Do not lower case the message text. This is wrong for some languages, at least for...
authorRaimond Spekking <raymond@users.mediawiki.org>
Thu, 17 Sep 2009 12:44:55 +0000 (12:44 +0000)
committerRaimond Spekking <raymond@users.mediawiki.org>
Thu, 17 Sep 2009 12:44:55 +0000 (12:44 +0000)
includes/specials/SpecialAllmessages.php

index 417e367..b88b6a6 100644 (file)
@@ -143,7 +143,7 @@ class AllmessagesTablePager extends TablePager {
 
                global $wgLang, $wgContLang, $wgRequest;
 
-               $this->talk = $wgLang->lc( htmlspecialchars( wfMsg( 'talkpagelinktext' ) ) );
+               $this->talk = htmlspecialchars( wfMsg( 'talkpagelinktext' ) );
 
                $this->lang = ( $langObj ? $langObj : $wgContLang );
                $this->langcode = $this->lang->getCode();