From: Brion Vibber Date: Wed, 29 Jun 2005 07:38:48 +0000 (+0000) Subject: escape a couple more msgs X-Git-Tag: 1.5.0beta2~128 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=6897df195b0cdc9d30262fd426eb3dbaa79196c9;p=lhc%2Fweb%2Fwiklou.git escape a couple more msgs --- diff --git a/includes/PageHistory.php b/includes/PageHistory.php index 6791e71380..e1dee33d5f 100644 --- a/includes/PageHistory.php +++ b/includes/PageHistory.php @@ -477,8 +477,8 @@ wfdebug("limits=$limits offset=$offsets got=".count($result)."\n"); $firsturl = $wgTitle->escapeLocalURL("action=history&limit={$limit}&go=first"); $lasturl = $wgTitle->escapeLocalURL("action=history&limit={$limit}"); - $firsttext = wfMsg("histfirst"); - $lasttext = wfMsg("histlast"); + $firsttext = wfMsgHtml("histfirst"); + $lasttext = wfMsgHtml("histlast"); $prevurl = $wgTitle->escapeLocalURL("action=history&dir=prev&offset={$latestShown}&limit={$limit}"); $nexturl = $wgTitle->escapeLocalURL("action=history&offset={$earliestShown}&limit={$limit}");