1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 17:08:14 +02:00

Merge branch 'PHP-5.5'

* PHP-5.5:
  fix test for bug #60322
This commit is contained in:
Stanislav Malyshev
2013-06-13 10:31:31 -07:00
+4 -1
View File
@@ -1,8 +1,11 @@
--TEST--
Bug #60322 (ob_get_clean() now raises an E_NOTICE if no buffers exist)
--INI--
output_buffering=128
--FILE--
<?php
while(ob_get_clean()) ;
ob_start();
while(@ob_end_clean());
var_dump(ob_get_clean());
--EXPECT--
bool(false)