From 657f5d5ba3997b17dcc192783eda9745d012a39c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Malo?= Date: Fri, 2 Jan 2004 23:45:06 +0000 Subject: [PATCH] fix a rewrite mistake: restore the ability to expand variables within . git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102147 13f79535-47bb-0310-9956-ffa450edef68 --- modules/filters/mod_include.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index 8ae98943ef..62d92baa45 100644 --- a/modules/filters/mod_include.c +++ b/modules/filters/mod_include.c @@ -1704,7 +1704,7 @@ static apr_status_t handle_include(include_ctx_t *ctx, ap_filter_t *f, apr_status_t rv; /* be safe; only files in this directory or below allowed */ - rv = apr_filepath_merge(&newpath, NULL, tag_val, + rv = apr_filepath_merge(&newpath, NULL, parsed_string, APR_FILEPATH_NOTABOVEROOT | APR_FILEPATH_SECUREROOTTEST | APR_FILEPATH_NOTABSOLUTE, ctx->dpool); -- 2.50.1