gregames 02/01/28 13:18:10
Modified: modules/mappers mod_negotiation.c
Log:
backing out fix for missing path info and query string. wrowe beat me to
it.
Revision Changes Path
1.93 +0 -4 httpd-2.0/modules/mappers/mod_negotiation.c
Index: mod_negotiation.c
===================================================================
RCS file: /home/cvs/httpd-2.0/modules/mappers/mod_negotiation.c,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- mod_negotiation.c 28 Jan 2002 18:43:19 -0000 1.92
+++ mod_negotiation.c 28 Jan 2002 21:18:10 -0000 1.93
@@ -2892,10 +2892,6 @@
}
}
- /* preserve path info and query string from the original request */
- sub_req->path_info = r->path_info;
- sub_req->args = r->args;
-
/* now do a "fast redirect" ... promotes the sub_req into the main req */
ap_internal_fast_redirect(sub_req, r);
|