1--TEST-- 2Bug #77594 (ob_tidyhandler is never reset) 3--DESCRIPTION-- 4Test is useful only with --repeat 2 (or more) 5--SKIPIF-- 6<?php 7if (!extension_loaded('tidy')) die('skip tidy extension not available'); 8?> 9--FILE-- 10<?php 11ob_start('ob_tidyhandler'); 12var_dump(ob_end_clean()); 13?> 14--EXPECT-- 15bool(true) 16