From: Niklas Laxström Date: Mon, 2 Apr 2007 14:23:58 +0000 (+0000) Subject: * Escaping X-Git-Tag: 1.31.0-rc.0~53498 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/journal.php?a=commitdiff_plain;h=bc154c4e6f5d63e0e96421b5c680cf81d8557973;p=lhc%2Fweb%2Fwiklou.git * Escaping --- diff --git a/includes/SpecialWhatlinkshere.php b/includes/SpecialWhatlinkshere.php index a9896e8f36..6fdeaa0bfb 100644 --- a/includes/SpecialWhatlinkshere.php +++ b/includes/SpecialWhatlinkshere.php @@ -240,8 +240,8 @@ class WhatLinksHerePage { function getPrevNext( $limit, $prevId, $nextId, $namespace ) { global $wgLang; $fmtLimit = $wgLang->formatNum( $limit ); - $prev = wfMsgExt( 'whatlinkshere-prev', 'parsemag', $fmtLimit ); - $next = wfMsgExt( 'whatlinkshere-next', 'parsemag', $fmtLimit ); + $prev = wfMsgExt( 'whatlinkshere-prev', array( 'parsemag', 'escape' ), $fmtLimit ); + $next = wfMsgExt( 'whatlinkshere-next', array( 'parsemag', 'escape' ), $fmtLimit ); if ( 0 != $prevId ) { $prevLink = $this->makeSelfLink( $prev, "limit={$limit}&from={$this->back}&namespace={$namespace}" );