mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
Guys, please keep K&R.
This commit is contained in:
parent
b169932d1c
commit
d58c3dda96
1 changed files with 3 additions and 6 deletions
|
@ -843,16 +843,13 @@ int php_request_startup(TSRMLS_D)
|
|||
|
||||
if (PG(output_handler) && PG(output_handler)[0]) {
|
||||
php_start_ob_buffer_named(PG(output_handler), 0, 1 TSRMLS_CC);
|
||||
}
|
||||
else if (PG(output_buffering)) {
|
||||
} else if (PG(output_buffering)) {
|
||||
if (PG(output_buffering)>1) {
|
||||
php_start_ob_buffer(NULL, PG(output_buffering), 0 TSRMLS_CC);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
php_start_ob_buffer(NULL, 0, 1 TSRMLS_CC);
|
||||
}
|
||||
}
|
||||
else if (PG(implicit_flush)) {
|
||||
} else if (PG(implicit_flush)) {
|
||||
php_start_implicit_flush(TSRMLS_C);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue