Commit 592f7397 authored by Brian Pane's avatar Brian Pane
Browse files

Send output to the next filter even on header_only requests in mod_status

and mod_info


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95654 13f79535-47bb-0310-9956-ffa450edef68
parent f719c7bf
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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);
+0 −3
Original line number Diff line number Diff line
@@ -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) {