From 61a1e9b2eccd673f7aa3909b5f623a0bd789c339 Mon Sep 17 00:00:00 2001 From: Jan Kneschke Date: Tue, 26 Jul 2005 08:24:32 +0000 Subject: [PATCH] reverted last patch and added comment git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.3.x@474 152afb58-edef-0310-8abb-c4023f1b3aa9 --- src/mod_rewrite.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/mod_rewrite.c b/src/mod_rewrite.c index 62f49471..12bef677 100644 --- a/src/mod_rewrite.c +++ b/src/mod_rewrite.c @@ -439,7 +439,10 @@ int mod_rewrite_plugin_init(plugin *p) { p->name = buffer_init_string("rewrite"); p->init = mod_rewrite_init; - p->handle_uri_clean = mod_rewrite_uri_handler; + /* it has to stay _raw as we are matching on uri + querystring + */ + + p->handle_uri_raw = mod_rewrite_uri_handler; p->set_defaults = mod_rewrite_set_defaults; p->cleanup = mod_rewrite_free; p->connection_reset = mod_rewrite_con_reset;