From 11d24c1593d6617f73d3f290617bd8994182f4dc Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 31 May 2010 10:29:43 +0000 Subject: * implement new output API, fixing some bugs and implementing some feature requests--let's see what I can dig out of the bugtracker for NEWS-- and while crossing the road: * implemented new zlib API * fixed up ext/tidy (what was "s&" in zend_parse_parameters() supposed to do?) Thanks to Jani and Felipe for pioneering. --- main/SAPI.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main/SAPI.c') diff --git a/main/SAPI.c b/main/SAPI.c index 22012d69be..ca54b3d8af 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)", -- cgit v1.2.1