diff src/http/modules/ngx_http_ssi_filter_module.c @ 3453:7b68809fe8b1

use content type of the parent request in SSI stub block output instead of default one
author Igor Sysoev <igor@sysoev.ru>
date Fri, 19 Feb 2010 13:42:59 +0000
parents 6b8e5c882e47
children 04966b3122ab
line wrap: on
line diff
--- a/src/http/modules/ngx_http_ssi_filter_module.c
+++ b/src/http/modules/ngx_http_ssi_filter_module.c
@@ -2061,9 +2061,9 @@ ngx_http_ssi_stub_output(ngx_http_reques
     out = data;
 
     if (!r->header_sent) {
-        if (ngx_http_set_content_type(r) != NGX_OK) {
-            return NGX_ERROR;
-        }
+        r->headers_out.content_type_len =
+                                      r->parent->headers_out.content_type_len;
+        r->headers_out.content_type = r->parent->headers_out.content_type;
 
         if (ngx_http_send_header(r) == NGX_ERROR) {
             return NGX_ERROR;