On 9/26/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Author: niq > Date: Wed Sep 26 07:26:19 2007 > New Revision: 579664 > > URL: http://svn.apache.org/viewvc?rev=579664&view=rev > Log: > Reinstate location walk for subrequests > PR 41960 (Jose Kahan) > > Modified: > httpd/httpd/trunk/CHANGES > httpd/httpd/trunk/server/request.c > > Modified: httpd/httpd/trunk/CHANGES > URL: > http://svn.apache.org/viewvc/httpd/httpd/trunk/CHANGES?rev=579664&r1=579663&r2=579664&view=diff > ============================================================================== > --- httpd/httpd/trunk/CHANGES [utf-8] (original) > +++ httpd/httpd/trunk/CHANGES [utf-8] Wed Sep 26 07:26:19 2007 > @@ -2,6 +2,9 @@ > Changes with Apache 2.3.0 > [ When backported to 2.2.x, remove entry from this file ] > > + *) core: reinstate location walk to fix config for subrequests > + PR 41960 [Jose Kahan <jose w3.org>] > + > *) mod_log_config: Add format options for %p so that the actual local > or remote port can be logged. PR 43415. [Adam Hasselbalch Hansen > <[EMAIL PROTECTED]>, Ruediger Pluem, Jeff Trawick] > > Modified: httpd/httpd/trunk/server/request.c > URL: > http://svn.apache.org/viewvc/httpd/httpd/trunk/server/request.c?rev=579664&r1=579663&r2=579664&view=diff > ============================================================================== > --- httpd/httpd/trunk/server/request.c (original) > +++ httpd/httpd/trunk/server/request.c Wed Sep 26 07:26:19 2007 > @@ -152,14 +152,10 @@ > return access_status; > } > > - /* Excluding file-specific requests with no 'true' URI... > + /* Rerun the location walk, which overrides any map_to_storage config. > */ > - if (!file_req) { > - /* Rerun the location walk, which overrides any map_to_storage > config. > - */ > - if ((access_status = ap_location_walk(r))) { > - return access_status; > - } > + if ((access_status = ap_location_walk(r))) { > + return access_status; > } > > /* Only on the main request! */ > > >
-- Eric Covener [EMAIL PROTECTED]
