Parent Directory
|
Revision Log
|
Patch
--- httpd/httpd/trunk/modules/filters/mod_include.c 2007/09/02 20:08:56 572136
+++ httpd/httpd/trunk/modules/filters/mod_include.c 2007/11/07 23:31:03 592951
@@ -1712,7 +1712,12 @@
}
}
else {
- rr = ap_sub_req_lookup_uri(parsed_string, r, f->next);
+ if (r->kept_body) {
+ rr = ap_sub_req_method_uri(r->method, parsed_string, r, f->next);
+ }
+ else {
+ rr = ap_sub_req_lookup_uri(parsed_string, r, f->next);
+ }
}
if (!error_fmt && rr->status != HTTP_OK) {
| apache@apache.org | ViewVC Help |
| Powered by ViewVC 1.1.2 |