Index: trunk/phase3/includes/installer/WebInstaller.php |
— | — | @@ -1601,10 +1601,12 @@ |
1602 | 1602 | $msg = $success ? 'config-install-step-done' : 'config-install-step-failed'; |
1603 | 1603 | $html = wfMsgHtml( 'word-separator' ) . wfMsgHtml( $msg ); |
1604 | 1604 | if ( !$success ) { |
1605 | | - $this->parent->showStatusBox( $status ); |
1606 | 1605 | $html = "<span class=\"error\">$html</span>"; |
1607 | 1606 | } |
1608 | 1607 | $this->addHTML( $html . "</li>\n" ); |
| 1608 | + if( !$success ) { |
| 1609 | + $this->parent->showStatusBox( $status ); |
| 1610 | + } |
1609 | 1611 | } |
1610 | 1612 | } |
1611 | 1613 | |