From: Niklas Laxström Date: Thu, 17 Jul 2008 09:25:19 +0000 (+0000) Subject: * Fix double escaping issues introduced in r34320 (bug 14840) X-Git-Tag: 1.31.0-rc.0~46476 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/gestion/rappel_modifier.php?a=commitdiff_plain;h=2245b22cdb563fd2f832805d073fd8a96bf1e2dc;p=lhc%2Fweb%2Fwiklou.git * Fix double escaping issues introduced in r34320 (bug 14840) --- diff --git a/includes/specials/SpecialWhatlinkshere.php b/includes/specials/SpecialWhatlinkshere.php index a57df5e03f..3502e33ced 100644 --- a/includes/specials/SpecialWhatlinkshere.php +++ b/includes/specials/SpecialWhatlinkshere.php @@ -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' )."
\n");