| 391 | } |
| 392 | |
| 393 | static void module_request_hook_participate(request_rec * r, module * modp) |
| 394 | { |
| 395 | int i, comma = 0; |
| 396 | |
| 397 | ap_rputs("<dt><strong>Request Phase Participation:</strong>\n", r); |
| 398 | |
| 399 | for (i = 0; request_hooks[i].name; i++) { |
| 400 | module_participate(r, modp, &request_hooks[i], &comma); |
| 401 | } |
| 402 | |
| 403 | if (!comma) { |
| 404 | ap_rputs("<tt> <em>none</em></tt>", r); |
| 405 | } |
| 406 | ap_rputs("</dt>\n", r); |
| 407 | } |
| 408 | |
| 409 | static const char *find_more_info(server_rec * s, const char *module_name) |
| 410 | { |
no test coverage detected