From: Ryan Bloom Date: Sat, 18 Nov 2000 05:44:53 +0000 (+0000) Subject: Get Multi-Views working again. It wasn't working because we weren't X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d12ea94899980f68b3507a336a6a467da696d16;p=apache Get Multi-Views working again. It wasn't working because we weren't setting the path_info field correctly if we didn't find the specified file. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87004 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_request.c b/modules/http/http_request.c index 800e59f127..17bdf53838 100644 --- a/modules/http/http_request.c +++ b/modules/http/http_request.c @@ -311,7 +311,6 @@ static int get_path_info(request_rec *r) "access to %s failed", r->uri); return HTTP_FORBIDDEN; } - last_cp = cp; } return OK; }