Index: branches/new-installer/phase3/includes/installer/WebInstaller.php |
— | — | @@ -1519,7 +1519,11 @@ |
1520 | 1520 | |
1521 | 1521 | private function endStage( $success = true ) { |
1522 | 1522 | $msg = $success ? 'config-install-step-done' : 'config-install-step-failed'; |
1523 | | - $this->parent->output->addHTML( wfMsgHtml( $msg ) . "</li>\n" ); |
| 1523 | + $html = wfMsgHtml( $msg ); |
| 1524 | + if ( !$success ) { |
| 1525 | + $html = "<span class=\"error\">$html</html>"; |
| 1526 | + } |
| 1527 | + $this->parent->output->addHTML( $html . "</li>\n" ); |
1524 | 1528 | } |
1525 | 1529 | } |
1526 | 1530 | class WebInstaller_Complete extends WebInstallerPage { |
Index: branches/new-installer/phase3/includes/installer/WebInstallerOutput.php |
— | — | @@ -88,6 +88,7 @@ |
89 | 89 | <meta name="robots" content="noindex, nofollow" /> |
90 | 90 | <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> |
91 | 91 | <title>MediaWiki <?php echo( htmlspecialchars( $wgVersion ) ); ?> Installation</title> |
| 92 | + <link rel="stylesheet" type="text/css" href="../skins/common/shared.css"/> |
92 | 93 | <link rel="stylesheet" type="text/css" href="../skins/monobook/main.css"/> |
93 | 94 | <link rel="stylesheet" type="text/css" href="../skins/common/config.css"/> |
94 | 95 | <script type="text/javascript"><!-- |
Index: branches/new-installer/phase3/languages/messages/MessagesEn.php |
— | — | @@ -4451,7 +4451,7 @@ |
4452 | 4452 | They may require additional configuration, but you can enable them now", |
4453 | 4453 | |
4454 | 4454 | 'config-install-step-done' => 'done', |
4455 | | -'config-install-step-failed' => "<b>FAILED</b>", |
| 4455 | +'config-install-step-failed' => 'FAILED', |
4456 | 4456 | 'config-install-extensions' => 'Including extensions', |
4457 | 4457 | 'config-install-database' => 'Setting up database', |
4458 | 4458 | 'config-install-tables' => 'Creating tables', |