From: Chad Horohoe Date: Mon, 1 Nov 2010 15:12:44 +0000 (+0000) Subject: Revert r69360 (adding ob_flush() to WebInstallerOutput::flush()). Per CR, this doesn... X-Git-Tag: 1.31.0-rc.0~34153 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=598b2469a2925cbf4d89327f269b2869b4ccd1e7;p=lhc%2Fweb%2Fwiklou.git 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. --- 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 = ''; }