Move doclink pages to the left sidebar, rather than the right.
authorChad Horohoe <demon@users.mediawiki.org>
Wed, 23 Feb 2011 17:22:09 +0000 (17:22 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Wed, 23 Feb 2011 17:22:09 +0000 (17:22 +0000)
The right should be steps :)

includes/installer/Installer.i18n.php
includes/installer/WebInstaller.php

index 3f942b6..210bf63 100644 (file)
@@ -78,7 +78,12 @@ You should have received <doclink href=Copying>a copy of the GNU General Public
        'config-sidebar'                  => "* [http://www.mediawiki.org MediaWiki home]
 * [http://www.mediawiki.org/wiki/Help:Contents User's Guide]
 * [http://www.mediawiki.org/wiki/Manual:Contents Administrator's Guide]
-* [http://www.mediawiki.org/wiki/Manual:FAQ FAQ]",
+* [http://www.mediawiki.org/wiki/Manual:FAQ FAQ]
+----
+* <doclink href=Readme>Read me</doclink>
+* <doclink href=ReleaseNotes>Release notes</doclink>
+* <doclink href=Copying>Copying</doclink>
+* <doclink href=UpgradeDoc>Upgrading</doclink>",
        'config-env-good'                 => 'The environment has been checked.
 You can install MediaWiki.',
        'config-env-bad'                  => 'The environment has been checked.
index e679524..6588291 100644 (file)
@@ -501,11 +501,7 @@ class WebInstaller extends Installer {
                }
 
                $s .= "</ul><br/><ul>\n";
-
-               foreach ( $this->otherPages as $pageName ) {
-                       $s .= $this->getPageListItem( $pageName, true, $currentPageName );
-               }
-
+               $s .= $this->getPageListItem( 'Restart', true, $currentPageName );
                $s .= "</ul></div>\n"; // end list pane
                $s .= Html::element( 'h2', array(),
                                wfMsg( 'config-page-' . strtolower( $currentPageName ) ) );