diff options
author | Stefan Bühler <stbuehler@web.de> | 2010-01-06 16:07:43 +0000 |
---|---|---|
committer | Stefan Bühler <stbuehler@web.de> | 2010-01-06 16:07:43 +0000 |
commit | e21a83934e5a39d569723b9c1f75b16a4b1ed8fd (patch) | |
tree | 56de3f41c69df4f9e08becf2620fac6cb2f11fc5 | |
parent | 6e035ae1cfc0c16b0880e7ed3cb81378db7efd99 (diff) | |
download | lighttpd-git-e21a83934e5a39d569723b9c1f75b16a4b1ed8fd.tar.gz |
Fix mod_cgi cgi.execute-x-only option in global block
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2702 152afb58-edef-0310-8abb-c4023f1b3aa9
-rw-r--r-- | src/mod_cgi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mod_cgi.c b/src/mod_cgi.c index 47bbbbe4..5972090a 100644 --- a/src/mod_cgi.c +++ b/src/mod_cgi.c @@ -1181,6 +1181,7 @@ static int mod_cgi_patch_connection(server *srv, connection *con, plugin_data *p plugin_config *s = p->config_storage[0]; PATCH(cgi); + PATCH(execute_x_only); /* skip the first, the global context */ for (i = 1; i < srv->config_context->used; i++) { |