mirror of
https://github.com/php/php-src.git
synced 2026-04-29 19:23:22 +02:00
MFH bugfix #21751
This commit is contained in:
@@ -89,6 +89,7 @@ PHP 4 NEWS
|
||||
- Fixed bug #21815 (fpassthru() ignored buffered data but complained anyway).
|
||||
(Wez)
|
||||
- Fixed bug #21809 (select would not always timeout during socket shutdown). (Wez)
|
||||
- Fixed bug #21751 (default output buffer could not be deleted). (Marcus)
|
||||
- Fixed bug #21725 (return behaviour differs between include and require). (Zeev)
|
||||
- Fixed bug #21713 (include remote files leaks descriptors on Solaris). (Wez)
|
||||
- Fixed bug #21708 (ucwords() trouble again). (Moriyoshi)
|
||||
|
||||
+1
-1
@@ -923,7 +923,7 @@ int php_request_startup(TSRMLS_D)
|
||||
php_start_ob_buffer_named(PG(output_handler), 0, 1 TSRMLS_CC);
|
||||
} else if (PG(output_buffering)) {
|
||||
if (PG(output_buffering)>1) {
|
||||
php_start_ob_buffer(NULL, PG(output_buffering), 0 TSRMLS_CC);
|
||||
php_start_ob_buffer(NULL, PG(output_buffering), 1 TSRMLS_CC);
|
||||
} else {
|
||||
php_start_ob_buffer(NULL, 0, 1 TSRMLS_CC);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user