summaryrefslogtreecommitdiff
path: root/sapi/apache
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2010-02-05 18:59:05 +0000
committerRasmus Lerdorf <rasmus@php.net>2010-02-05 18:59:05 +0000
commit1947334023c101fb1ad455dd0e18d44dd5a2ec94 (patch)
treee5c2e81746cfcb2c3328a2000f954809a2f6cfd9 /sapi/apache
parent3a239b15e94cdec8b2205e0d1f3d3cc9032db457 (diff)
downloadphp-git-1947334023c101fb1ad455dd0e18d44dd5a2ec94.tar.gz
Fix bug #50940
Diffstat (limited to 'sapi/apache')
-rw-r--r--sapi/apache/mod_php5.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sapi/apache/mod_php5.c b/sapi/apache/mod_php5.c
index c980597841..9711e3fa70 100644
--- a/sapi/apache/mod_php5.c
+++ b/sapi/apache/mod_php5.c
@@ -196,6 +196,8 @@ static int sapi_apache_header_handler(sapi_header_struct *sapi_header, sapi_head
if (!strcasecmp(header_name, "Content-Type")) {
r->content_type = pstrdup(r->pool, header_content);
+ } else if (!strcasecmp(header_name, "Content-Length")) {
+ ap_set_content_length(r, strtol(header_content, (char **)NULL, 10));
} else if (!strcasecmp(header_name, "Set-Cookie")) {
table_add(r->headers_out, header_name, header_content);
} else if (op == SAPI_HEADER_REPLACE) {