geoff 2004/02/29 20:24:00
Modified: src/modules/perl mod_perl.c
Log:
add comments
Revision Changes Path
1.210 +4 -0 modperl-2.0/src/modules/perl/mod_perl.c
Index: mod_perl.c
===================================================================
RCS file: /home/cvs/modperl-2.0/src/modules/perl/mod_perl.c,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- mod_perl.c 1 Mar 2004 03:57:34 -0000 1.209
+++ mod_perl.c 1 Mar 2004 04:24:00 -0000 1.210
@@ -713,6 +713,10 @@
ap_hook_create_request(modperl_hook_create_request,
NULL, NULL, APR_HOOK_MIDDLE);
+ /* both of these hooks need to run really, really first.
+ * otherwise, the global request_rec will be set up _after_ some
+ * Perl handlers run.
+ */
ap_hook_post_read_request(modperl_hook_post_read_request,
NULL, NULL, MODPERL_HOOK_REALLY_REALLY_FIRST);