commit | f0a51cfa098d25bf9af01523ff6a220e983fa717 | [log] [tgz] |
---|---|---|
author | Igor Sysoev <igor@sysoev.ru> | Mon Oct 22 10:19:17 2007 +0000 |
committer | Igor Sysoev <igor@sysoev.ru> | Mon Oct 22 10:19:17 2007 +0000 |
tree | 3c5bffa71b6d5dc60cdbc2ffb9f6306fc13d56d0 | |
parent | 070cf22ab45774b1f44d7eba5f6cd580998bd7b4 [diff] [blame] |
unescape SSI include
diff --git a/src/http/ngx_http_script.c b/src/http/ngx_http_script.c index 0fa08bc..96f618a 100644 --- a/src/http/ngx_http_script.c +++ b/src/http/ngx_http_script.c
@@ -750,7 +750,8 @@ dst = e->buf.data; src = e->buf.data; - ngx_unescape_uri(&dst, &src, e->pos - e->buf.data, NGX_UNESCAPE_URI); + ngx_unescape_uri(&dst, &src, e->pos - e->buf.data, + NGX_UNESCAPE_REDIRECT); if (src < e->pos) { dst = ngx_copy(dst, src, e->pos - src);