diff options
Diffstat (limited to 'ext/standard/output.c')
-rw-r--r-- | ext/standard/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/output.c b/ext/standard/output.c index a4b022313c..721379471b 100644 --- a/ext/standard/output.c +++ b/ext/standard/output.c @@ -334,7 +334,7 @@ static int php_ub_body_write(const char *str, uint str_length) if (SG(request_info).headers_only) { zend_bailout(); } - if (php3_header()) { + if (php_header()) { OG(php_body_write) = php_ub_body_write_no_header; result = php_ub_body_write_no_header(str, str_length); } |