comparison src/http/modules/ngx_http_index_module.c @ 645:4946078f0a79 release-0.3.44

nginx-0.3.44-RELEASE import *) Feature: the "wait" parameter in the "include" SSI command. *) Feature: the Ukrainian and Byelorussian characters were added to koi-win conversion table. *) Bugfix: in the SSI.
author Igor Sysoev <igor@sysoev.ru>
date Thu, 04 May 2006 15:32:46 +0000
parents e60fe4cf1d4e
children 9079ee4735ae
comparison
equal deleted inserted replaced
644:610ff734a8cc 645:4946078f0a79
141 /* TODO: Win32 */ 141 /* TODO: Win32 */
142 if (r->zero_in_uri) { 142 if (r->zero_in_uri) {
143 return NGX_DECLINED; 143 return NGX_DECLINED;
144 } 144 }
145 145
146 if (r->method != NGX_HTTP_GET && r->method != NGX_HTTP_HEAD) { 146 if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD))) {
147 return NGX_DECLINED; 147 return NGX_DECLINED;
148 } 148 }
149 149
150 log = r->connection->log; 150 log = r->connection->log;
151 151