summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules/perl/nginx.xs
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2010-04-22 14:02:45 +0000
committerIgor Sysoev <igor@sysoev.ru>2010-04-22 14:02:45 +0000
commitfa7d06ee4f31823f65c5aecea3a273940770bc9d (patch)
treebceeb6ab03ce2171d33485f1dffaf6d37ea0d3e1 /src/http/modules/perl/nginx.xs
parent185a5d172671b4b4346d801e144e055f3962d55d (diff)
downloadnginx-fa7d06ee4f31823f65c5aecea3a273940770bc9d.tar.gz
nginx-fa7d06ee4f31823f65c5aecea3a273940770bc9d.tar.bz2
change processing variables accessed by SSI and perl module:
*) the indexed variables are always flushed *) never show warning for not found variables
Diffstat (limited to 'src/http/modules/perl/nginx.xs')
-rw-r--r--src/http/modules/perl/nginx.xs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/perl/nginx.xs b/src/http/modules/perl/nginx.xs
index 357b1b9ae..aef4c8b03 100644
--- a/src/http/modules/perl/nginx.xs
+++ b/src/http/modules/perl/nginx.xs
@@ -848,7 +848,7 @@ variable(r, name, value = NULL)
#endif
- vv = ngx_http_get_variable(r, &var, hash, 1);
+ vv = ngx_http_get_variable(r, &var, hash);
if (vv == NULL) {
XSRETURN_UNDEF;
}