* Fix double escaping issues introduced in r34320 (bug 14840)
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Thu, 17 Jul 2008 09:25:19 +0000 (09:25 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Thu, 17 Jul 2008 09:25:19 +0000 (09:25 +0000)
includes/specials/SpecialWhatlinkshere.php

index a57df5e..3502e33 100644 (file)
@@ -73,7 +73,7 @@ class WhatLinksHerePage {
 
                $this->selfTitle = SpecialPage::getTitleFor( 'Whatlinkshere', $this->target->getPrefixedDBkey() );
 
-               $wgOut->setPageTitle( wfMsgExt( 'whatlinkshere-title', 'escape', $this->target->getPrefixedText() ) );
+               $wgOut->setPageTitle( wfMsg( 'whatlinkshere-title', $this->target->getPrefixedText() ) );
                $wgOut->setSubtitle( wfMsgHtml( 'linklistsub' ) );
 
                $wgOut->addHTML( wfMsgExt( 'whatlinkshere-barrow', array( 'escapenoentities') ) . ' '  .$this->skin->makeLinkObj($this->target, '', 'redirect=no' )."<br />\n");