1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00
This commit is contained in:
Marcus Boerger
2003-03-16 00:03:27 +00:00
parent 273d7623a6
commit 388607dc2d
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -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
View File
@@ -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);
}