From: Paul J. Reder Date: Tue, 15 Jul 2003 18:43:41 +0000 (+0000) Subject: Namespace protected the table label. X-Git-Tag: pre_ajp_proxy~1417 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4afe1d774758d219dc5922275ded1aaec77bc0f3;p=apache Namespace protected the table label. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100634 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index 2d673bb825..e1afa59e64 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -1183,7 +1183,7 @@ static int hook_uri2file(request_rec *r) thisurl, NULL); apr_table_setn(r->subprocess_env, ENVVAR_SCRIPT_URI, var); - if (!(saved_rulestatus = apr_table_get(r->notes,"already_rewritten"))) { + if (!(saved_rulestatus = apr_table_get(r->notes,"mod_rewrite_rewritten"))) { /* if filename was not initially set, * we start with the requested URI */ @@ -1201,7 +1201,7 @@ static int hook_uri2file(request_rec *r) * now apply the rules ... */ rulestatus = apply_rewrite_list(r, conf->rewriterules, NULL); - apr_table_set(r->notes,"already_rewritten", + apr_table_set(r->notes,"mod_rewrite_rewritten", apr_psprintf(r->pool,"%d",rulestatus)); } else {