]> granicus.if.org Git - apache/commitdiff
Send output to the next filter even on header_only requests in mod_status
authorBrian Pane <brianp@apache.org>
Thu, 13 Jun 2002 19:54:52 +0000 (19:54 +0000)
committerBrian Pane <brianp@apache.org>
Thu, 13 Jun 2002 19:54:52 +0000 (19:54 +0000)
and mod_info

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95654 13f79535-47bb-0310-9956-ffa450edef68

modules/generators/mod_info.c
modules/generators/mod_status.c

index f29b82f6f804f839e68031925119128f08680410..05c7baa8bb714d2fd4c35c291fd3f298dbfea0fb 100644 (file)
@@ -358,9 +358,6 @@ static int display_info(request_rec *r)
        return DECLINED;
 
     ap_set_content_type(r, "text/html");
-    if (r->header_only) {
-        return 0;
-    }
 
     ap_rputs(DOCTYPE_HTML_3_2
             "<html><head><title>Server Information</title></head>\n", r);
index ceb923718be0aa6f5d7ca12d6929e6f8a84625f4..bd476cefc1f5f0d2f70fc510cfa53c951a7a1277 100644 (file)
@@ -334,9 +334,6 @@ static int status_handler(request_rec *r)
         }
     }
 
-    if (r->header_only)
-        return 0;
-
     for (i = 0; i < server_limit; ++i) {
         ps_record = ap_get_scoreboard_process(i);
         for (j = 0; j < thread_limit; ++j) {