Index: branches/new-installer/phase3/maintenance/language/messages.inc |
— | — | @@ -3361,6 +3361,7 @@ |
3362 | 3362 | 'config-install-sysop', |
3363 | 3363 | 'config-install-localsettings', |
3364 | 3364 | 'config-install-done', |
| 3365 | + 'config-install-done-moved', |
3365 | 3366 | ), |
3366 | 3367 | ); |
3367 | 3368 | |
Index: branches/new-installer/phase3/includes/installer/WebInstaller.php |
— | — | @@ -1524,10 +1524,12 @@ |
1525 | 1525 | } |
1526 | 1526 | class WebInstaller_Complete extends WebInstallerPage { |
1527 | 1527 | public function execute() { |
| 1528 | + global $IP; |
1528 | 1529 | $this->startForm(); |
1529 | | - $this->parent->output->addHTML( |
| 1530 | + $msg = file_exists( "$IP/LocalSettings.php" ) ? 'config-install-done-moved' : 'config-install-done'; |
| 1531 | + $this->parent->output->addHTML( |
1530 | 1532 | $this->parent->getInfoBox( |
1531 | | - wfMsgNoTrans( 'config-install-done', |
| 1533 | + wfMsgNoTrans( $msg, |
1532 | 1534 | $GLOBALS['wgServer'] . |
1533 | 1535 | $this->getVar( 'wgScriptPath' ) . '/index' . |
1534 | 1536 | $this->getVar( 'wgScriptExtension' ) |
Index: branches/new-installer/phase3/languages/messages/MessagesEn.php |
— | — | @@ -4465,7 +4465,10 @@ |
4466 | 4466 | for MediaWiki to begin working. |
4467 | 4467 | |
4468 | 4468 | [$1 Link to your wiki]", |
| 4469 | +'config-install-done-moved' => "'''Congratulations''', you have successfully installed MediaWiki. |
4469 | 4470 | |
| 4471 | +[$1 Link to your wiki]", |
| 4472 | + |
4470 | 4473 | # Special:Version |
4471 | 4474 | 'version' => 'Version', |
4472 | 4475 | 'version-extensions' => 'Installed extensions', |