From 598b2469a2925cbf4d89327f269b2869b4ccd1e7 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Mon, 1 Nov 2010 15:12:44 +0000 Subject: [PATCH] Revert r69360 (adding ob_flush() to WebInstallerOutput::flush()). Per CR, this doesn't seem necessary and actually causes a regression for some environments. In other news: I hate PHP output buffering and I don't feel like digging back into this right now. --- includes/installer/WebInstallerOutput.php | 1 - 1 file changed, 1 deletion(-) diff --git a/includes/installer/WebInstallerOutput.php b/includes/installer/WebInstallerOutput.php index da31412473..a3677d2b58 100644 --- a/includes/installer/WebInstallerOutput.php +++ b/includes/installer/WebInstallerOutput.php @@ -87,7 +87,6 @@ class WebInstallerOutput { } if ( !$this->redirectTarget && strlen( $this->contents ) ) { echo $this->contents; - ob_flush(); flush(); $this->contents = ''; } -- 2.20.1