diff options
| author | Jani Taskinen <jani@php.net> | 2010-03-11 10:24:29 +0000 |
|---|---|---|
| committer | Jani Taskinen <jani@php.net> | 2010-03-11 10:24:29 +0000 |
| commit | 06f072cb5e4e3582e20b8762141eccbc4dce85fa (patch) | |
| tree | 511382440db96edad3a2627ce361113e29d672ab /main/SAPI.c | |
| parent | f60946eb5430cd11daa9f88503dc9b1a9b7bd634 (diff) | |
| download | php-git-06f072cb5e4e3582e20b8762141eccbc4dce85fa.tar.gz | |
MFH: Improved / fixed output buffering (Michael Wallner)
Diffstat (limited to 'main/SAPI.c')
| -rw-r--r-- | main/SAPI.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/SAPI.c b/main/SAPI.c index 3e8abb2706..abf2897a71 100644 --- a/main/SAPI.c +++ b/main/SAPI.c @@ -532,8 +532,8 @@ SAPI_API int sapi_header_op(sapi_header_op_enum op, void *arg TSRMLS_DC) int http_response_code; if (SG(headers_sent) && !SG(request_info).no_headers) { - char *output_start_filename = php_get_output_start_filename(TSRMLS_C); - int output_start_lineno = php_get_output_start_lineno(TSRMLS_C); + char *output_start_filename = php_output_get_start_filename(TSRMLS_C); + int output_start_lineno = php_output_get_start_lineno(TSRMLS_C); if (output_start_filename) { sapi_module.sapi_error(E_WARNING, "Cannot modify header information - headers already sent by (output started at %s:%d)", |
