diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2003-08-02 18:29:30 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2003-08-02 18:29:30 +0000 |
| commit | d2bf1c1338d322cf81e0c460c7ed79db5dc23253 (patch) | |
| tree | 556903b5c98c268cd4b051496d791e7c524416eb /sapi/apache2filter | |
| parent | ede834c8b1e3d20ee6287ec9afa1b9b469638b35 (diff) | |
| download | php-git-d2bf1c1338d322cf81e0c460c7ed79db5dc23253.tar.gz | |
Fixed bug #24177 (Status not set correctly after flush() in Apache 2)
Diffstat (limited to 'sapi/apache2filter')
| -rw-r--r-- | sapi/apache2filter/sapi_apache2.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sapi/apache2filter/sapi_apache2.c b/sapi/apache2filter/sapi_apache2.c index 1295d1ceef..fde7fbb488 100644 --- a/sapi/apache2filter/sapi_apache2.c +++ b/sapi/apache2filter/sapi_apache2.c @@ -241,7 +241,9 @@ php_apache_sapi_flush(void *server_context) * then don't bother flushing. */ if (!server_context) return; - + + ctx->r->status = SG(sapi_headers).http_response_code; + f = ctx->f; /* Send a flush bucket down the filter chain. The current default |
