From 0f74984477f2c8e043067d321cbbac07c9fb3bdc Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Fri, 9 Jul 2010 18:36:10 +0000 Subject: [PATCH] Move status box below output from pass/fail --- includes/installer/WebInstaller.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/installer/WebInstaller.php b/includes/installer/WebInstaller.php index 9ab7fdcfef..66e9d45ae0 100644 --- a/includes/installer/WebInstaller.php +++ b/includes/installer/WebInstaller.php @@ -1601,10 +1601,12 @@ class WebInstaller_Install extends WebInstallerPage { $msg = $success ? 'config-install-step-done' : 'config-install-step-failed'; $html = wfMsgHtml( 'word-separator' ) . wfMsgHtml( $msg ); if ( !$success ) { - $this->parent->showStatusBox( $status ); $html = "$html"; } $this->addHTML( $html . "\n" ); + if( !$success ) { + $this->parent->showStatusBox( $status ); + } } } -- 2.20.1