comparison src/http/modules/ngx_http_fastcgi_module.c @ 655:4c8cd5ae5cc1 release-0.3.49

nginx-0.3.49-RELEASE import *) Bugfix: in the "set" directive. *) Bugfix: if two or more FastCGI subrequests was in SSI, then first subrequest output was included instead of second and following subrequests.
author Igor Sysoev <igor@sysoev.ru>
date Wed, 31 May 2006 14:11:45 +0000
parents 39b7d7b33c91
children 400711951595
comparison
equal deleted inserted replaced
654:01f41db063d4 655:4c8cd5ae5cc1
1474 ngx_http_fastcgi_add_variables(ngx_conf_t *cf) 1474 ngx_http_fastcgi_add_variables(ngx_conf_t *cf)
1475 { 1475 {
1476 ngx_http_variable_t *var; 1476 ngx_http_variable_t *var;
1477 1477
1478 var = ngx_http_add_variable(cf, &ngx_http_fastcgi_script_name, 1478 var = ngx_http_add_variable(cf, &ngx_http_fastcgi_script_name,
1479 NGX_HTTP_VAR_NOHASH); 1479 NGX_HTTP_VAR_NOHASH|NGX_HTTP_VAR_NOCACHABLE);
1480 if (var == NULL) { 1480 if (var == NULL) {
1481 return NGX_ERROR; 1481 return NGX_ERROR;
1482 } 1482 }
1483 1483
1484 var->get_handler = ngx_http_fastcgi_script_name_variable; 1484 var->get_handler = ngx_http_fastcgi_script_name_variable;