Follow up on r44724 (Remove some less-useful redundant links from sidebar): remove...
authorSiebrand Mazeland <siebrand@users.mediawiki.org>
Sat, 27 Dec 2008 14:33:26 +0000 (14:33 +0000)
committerSiebrand Mazeland <siebrand@users.mediawiki.org>
Sat, 27 Dec 2008 14:33:26 +0000 (14:33 +0000)
includes/Skin.php
languages/messages/MessagesEn.php
maintenance/language/messages.inc
skins/CologneBlue.php

index e04f877..0c221fe 100644 (file)
@@ -1651,12 +1651,6 @@ END;
                return $s;
        }
 
-       function bugReportsLink() {
-               $s = $this->makeKnownLink( wfMsgForContent( 'bugreportspage' ),
-                 wfMsg( 'bugreports' ) );
-               return $s;
-       }
-
        function talkLink() {
                global $wgTitle;
 
index 079edb7..3d8ec64 100644 (file)
@@ -693,8 +693,6 @@ XHTML id names.
 # All link text and link target definitions of links into project namespace that get used by other message strings, with the exception of user group pages (see grouppage) and the disambiguation template definition (see disambiguations).
 'aboutsite'            => 'About {{SITENAME}}',
 'aboutpage'            => 'Project:About',
-'bugreports'           => 'Bug reports',
-'bugreportspage'       => 'Project:Bug reports',
 'copyright'            => 'Content is available under $1.',
 'copyrightpagename'    => '{{SITENAME}} copyright',
 'copyrightpage'        => '{{ns:project}}:Copyrights',
index a3ba4e9..1b8330e 100644 (file)
@@ -218,8 +218,6 @@ $wgMessageStructure = array(
        'links' => array(
                'aboutsite',
                'aboutpage',
-               'bugreports',
-               'bugreportspage',
                'copyright',
                'copyrightpagename',
                'copyrightpage',
index 7973962..f3806dc 100644 (file)
@@ -263,8 +263,7 @@ class SkinCologneBlue extends Skin {
                $s .= $this->menuHead( "qbspecialpages" )
                  . $this->specialLink( "newpages" )
                  . $sep . $this->specialLink( "imagelist" )
-                 . $sep . $this->specialLink( "statistics" )
-                 . $sep . $this->bugReportsLink();
+                 . $sep . $this->specialLink( "statistics" );
                if ( $wgUser->isLoggedIn() && $wgEnableUploads ) {
                        $s .= $sep . $this->specialLink( "upload" );
                }