diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2004-03-08 03:15:45 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2004-03-08 03:15:45 +0000 |
| commit | c828007fdf90806bf1b174e0244a88f9e184b5e9 (patch) | |
| tree | 44892b2fe8e46c605e55124122be46512978d1cc /sapi/apache2handler/sapi_apache2.c | |
| parent | 611226073841e256144a5ed0d2a457cb6e561872 (diff) | |
| download | php-git-c828007fdf90806bf1b174e0244a88f9e184b5e9.tar.gz | |
Fixed bug #27424 (headers missing on flush() in apache 2 SAPIs).
Diffstat (limited to 'sapi/apache2handler/sapi_apache2.c')
| -rw-r--r-- | sapi/apache2handler/sapi_apache2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sapi/apache2handler/sapi_apache2.c b/sapi/apache2handler/sapi_apache2.c index ddafafadd9..649e55c3f3 100644 --- a/sapi/apache2handler/sapi_apache2.c +++ b/sapi/apache2handler/sapi_apache2.c @@ -256,6 +256,8 @@ php_apache_sapi_flush(void *server_context) r = ctx->r; brigade = ctx->brigade; + sapi_send_headers(TSRMLS_C); + r->status = SG(sapi_headers).http_response_code; SG(headers_sent) = 1; |
