From bc154c4e6f5d63e0e96421b5c680cf81d8557973 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Mon, 2 Apr 2007 14:23:58 +0000 Subject: [PATCH] * Escaping --- includes/SpecialWhatlinkshere.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}" ); -- 2.20.1