]> granicus.if.org Git - php/commitdiff
MFH
authorJani Taskinen <jani@php.net>
Thu, 7 May 2009 13:44:23 +0000 (13:44 +0000)
committerJani Taskinen <jani@php.net>
Thu, 7 May 2009 13:44:23 +0000 (13:44 +0000)
tests/lang/bug45392.phpt

index 2fec5e4a510e3012cce9064e18214247490de7fb..dacfb7bb7aea7627d0263a855b8c2a62e728bfd5 100644 (file)
@@ -6,14 +6,12 @@ display_errors=stderr
 <?php
 echo __LINE__ . "\n";
 ini_set('memory_limit', 100);
-ob_start(NULL, 10);
 echo __LINE__ ."\n";
 ob_start();
 $i = 0;
 while($i++ < 5000)  {
   echo str_repeat("may not be displayed ", 42);
 }
-ob_end_flush();
 ob_end_clean();
 ?>
 --EXPECTF--