summaryrefslogtreecommitdiff
path: root/sapi/apache2handler
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2003-12-12 17:19:18 +0000
committerIlia Alshanetsky <iliaa@php.net>2003-12-12 17:19:18 +0000
commite61a8d577cd6d7b146f4df36e9b87bfe1d397a7a (patch)
tree132b8524888dd5bcdc7102b5e786bf3b86ebe77a /sapi/apache2handler
parent8c0e3568a962ea463a47c9e14da7c13042c147c5 (diff)
downloadphp-git-e61a8d577cd6d7b146f4df36e9b87bfe1d397a7a.tar.gz
MFH: Fixed bug #26604 (Apache2 SAPIs implicitly disable Keep-Alive). (Ilia)
Diffstat (limited to 'sapi/apache2handler')
-rw-r--r--sapi/apache2handler/sapi_apache2.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sapi/apache2handler/sapi_apache2.c b/sapi/apache2handler/sapi_apache2.c
index b2384b1249..b777071eb0 100644
--- a/sapi/apache2handler/sapi_apache2.c
+++ b/sapi/apache2handler/sapi_apache2.c
@@ -432,7 +432,6 @@ static void php_apache_request_ctor(request_rec *r, php_struct *ctx TSRMLS_DC)
apr_table_unset(r->headers_out, "Last-Modified");
apr_table_unset(r->headers_out, "Expires");
apr_table_unset(r->headers_out, "ETag");
- apr_table_unset(r->headers_in, "Connection");
if (!PG(safe_mode) || (PG(safe_mode) && !ap_auth_type(r))) {
auth = apr_table_get(r->headers_in, "Authorization");
php_handle_auth_data(auth TSRMLS_CC);