We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b169932 commit d58c3ddCopy full SHA for d58c3dd
main/main.c
@@ -843,16 +843,13 @@ int php_request_startup(TSRMLS_D)
843
844
if (PG(output_handler) && PG(output_handler)[0]) {
845
php_start_ob_buffer_named(PG(output_handler), 0, 1 TSRMLS_CC);
846
- }
847
- else if (PG(output_buffering)) {
+ } else if (PG(output_buffering)) {
848
if (PG(output_buffering)>1) {
849
php_start_ob_buffer(NULL, PG(output_buffering), 0 TSRMLS_CC);
850
851
- else {
+ } else {
852
php_start_ob_buffer(NULL, 0, 1 TSRMLS_CC);
853
}
854
855
- else if (PG(implicit_flush)) {
+ } else if (PG(implicit_flush)) {
856
php_start_implicit_flush(TSRMLS_C);
857
858
0 commit comments