helly Sat Mar 15 11:39:35 2003 EDT
Modified files:
/php4/main main.c
Log:
fix Bug #21751 - the parameter was wrong when this code was introduced
Index: php4/main/main.c
diff -u php4/main/main.c:1.538 php4/main/main.c:1.539
--- php4/main/main.c:1.538 Wed Mar 12 07:00:22 2003
+++ php4/main/main.c Sat Mar 15 11:39:35 2003
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: main.c,v 1.538 2003/03/12 12:00:22 sesser Exp $ */
+/* $Id: main.c,v 1.539 2003/03/15 16:39:35 helly Exp $ */
/* {{{ includes
*/
@@ -959,7 +959,7 @@
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);
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php