From: Chad Horohoe Date: Wed, 14 Jul 2010 23:07:05 +0000 (+0000) Subject: Fix flush(). Need ob_flush() X-Git-Tag: 1.31.0-rc.0~36139 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=23188723592c64ea0b6a4ff681556d0a16eeef1d;p=lhc%2Fweb%2Fwiklou.git Fix flush(). Need ob_flush() --- diff --git a/includes/installer/WebInstallerOutput.php b/includes/installer/WebInstallerOutput.php index e8f746f9b1..2cb987d3ae 100644 --- a/includes/installer/WebInstallerOutput.php +++ b/includes/installer/WebInstallerOutput.php @@ -66,6 +66,7 @@ class WebInstallerOutput { } if ( !$this->redirectTarget && strlen( $this->contents ) ) { echo $this->contents; + ob_flush(); flush(); $this->contents = ''; }