From 23188723592c64ea0b6a4ff681556d0a16eeef1d Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Wed, 14 Jul 2010 23:07:05 +0000 Subject: [PATCH] Fix flush(). Need ob_flush() --- includes/installer/WebInstallerOutput.php | 1 + 1 file changed, 1 insertion(+) 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 = ''; } -- 2.20.1