summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/standard/output.c11
-rw-r--r--main/output.c11
2 files changed, 20 insertions, 2 deletions
diff --git a/ext/standard/output.c b/ext/standard/output.c
index 26f95af2e4..cacf045a0c 100644
--- a/ext/standard/output.c
+++ b/ext/standard/output.c
@@ -540,7 +540,16 @@ PHP_FUNCTION(ob_start)
break;
}
if (php_start_ob_buffer(output_handler, chunk_size)==FAILURE) {
- php_error(E_WARNING, "Cannot use output buffering in output buffering display handlers");
+ SLS_FETCH();
+ OLS_FETCH();
+
+ if (SG(headers_sent) && !SG(request_info).headers_only) {
+ OG(php_body_write) = php_ub_body_write_no_header;
+ } else {
+ OG(php_body_write) = php_ub_body_write;
+ }
+ OG(nesting_level) = 0;
+ php_error(E_ERROR, "Cannot use output buffering in output buffering display handlers");
RETURN_FALSE;
}
RETURN_TRUE;
diff --git a/main/output.c b/main/output.c
index 26f95af2e4..cacf045a0c 100644
--- a/main/output.c
+++ b/main/output.c
@@ -540,7 +540,16 @@ PHP_FUNCTION(ob_start)
break;
}
if (php_start_ob_buffer(output_handler, chunk_size)==FAILURE) {
- php_error(E_WARNING, "Cannot use output buffering in output buffering display handlers");
+ SLS_FETCH();
+ OLS_FETCH();
+
+ if (SG(headers_sent) && !SG(request_info).headers_only) {
+ OG(php_body_write) = php_ub_body_write_no_header;
+ } else {
+ OG(php_body_write) = php_ub_body_write;
+ }
+ OG(nesting_level) = 0;
+ php_error(E_ERROR, "Cannot use output buffering in output buffering display handlers");
RETURN_FALSE;
}
RETURN_TRUE;