Fix flush(). Need ob_flush()
authorChad Horohoe <demon@users.mediawiki.org>
Wed, 14 Jul 2010 23:07:05 +0000 (23:07 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Wed, 14 Jul 2010 23:07:05 +0000 (23:07 +0000)
includes/installer/WebInstallerOutput.php

index e8f746f..2cb987d 100644 (file)
@@ -66,6 +66,7 @@ class WebInstallerOutput {
                }
                if ( !$this->redirectTarget && strlen( $this->contents ) ) {
                        echo $this->contents;
+                       ob_flush();
                        flush();
                        $this->contents = '';
                }