Index: trunk/phase3/includes/installer/WebInstallerPage.php |
— | — | @@ -832,14 +832,13 @@ |
833 | 833 | } |
834 | 834 | |
835 | 835 | public function endStage( $step, $status ) { |
836 | | - $success = $status->isGood(); |
837 | | - $msg = $success ? 'config-install-step-done' : 'config-install-step-failed'; |
| 836 | + $msg = $status->isOk() ? 'config-install-step-done' : 'config-install-step-failed'; |
838 | 837 | $html = wfMsgHtml( 'word-separator' ) . wfMsgHtml( $msg ); |
839 | | - if ( !$success ) { |
| 838 | + if ( !$status->isOk() ) { |
840 | 839 | $html = "<span class=\"error\">$html</span>"; |
841 | 840 | } |
842 | 841 | $this->addHTML( $html . "</li>\n" ); |
843 | | - if( !$success ) { |
| 842 | + if( !$status->isGood() ) { |
844 | 843 | $this->parent->showStatusBox( $status ); |
845 | 844 | } |
846 | 845 | } |