Remove the unnecessary call to `ob_end_clean()` directly after `ob_get_clean()` in `WP_Ajax_UnitTestCase::dieHandler()`. This fixes a large number of AJAX errors in debug mode.

See #25282.



git-svn-id: https://develop.svn.wordpress.org/trunk@25432 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2013-09-13 21:32:54 +00:00
parent f76f2a692a
commit d85e040859
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ abstract class WP_Ajax_UnitTestCase extends WP_UnitTestCase {
*/
public function dieHandler( $message ) {
$this->_last_response .= ob_get_clean();
ob_end_clean();
if ( '' === $this->_last_response ) {
if ( is_scalar( $message) ) {
throw new WPAjaxDieStopException( (string) $message );