From: Moriyoshi Koizumi Date: Wed, 7 May 2003 14:11:58 +0000 (+0000) Subject: Possible fix for bug #23455 (patch by rrichards@digarc.com) X-Git-Tag: RELEASE_0_9b~72 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=edac2587515fdb202663fc9ffc6b527d7a6da907;p=php Possible fix for bug #23455 (patch by rrichards@digarc.com) --- diff --git a/sapi/apache2handler/sapi_apache2.c b/sapi/apache2handler/sapi_apache2.c index 08f5a84d9d..0abd1e20b3 100644 --- a/sapi/apache2handler/sapi_apache2.c +++ b/sapi/apache2handler/sapi_apache2.c @@ -416,7 +416,7 @@ static void php_apache_request_ctor(request_rec *r, php_struct *ctx TSRMLS_DC) r->no_local_copy = 1; content_type = sapi_get_default_content_type(TSRMLS_C); - ap_set_content_type(r, apr_pstrdup(r->pool, sapi_get_default_content_type(TSRMLS_C))); + ap_set_content_type(r, apr_pstrdup(r->pool, content_type)); efree(content_type); apr_table_unset(r->headers_out, "Content-Length");