From 95a776404f88a264a773b410c2d108c614819a5b Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Tue, 5 Jul 2005 12:36:01 +0000 Subject: [PATCH] * Escaped & correctly in Special:Contributions --- RELEASE-NOTES | 2 ++ includes/SpecialContributions.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 6e807f8c19..aa20ded840 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -501,6 +501,8 @@ of MediaWiki:Newpagetext) to &action=edit, if page is new. * Use xml:space="preserve" hint on export elements * Make language variant selection work again for zh +== Changes since 1.5beta2 == +* Escaped & correctly in Special:Contributions === Caveats === diff --git a/includes/SpecialContributions.php b/includes/SpecialContributions.php index 3b209a6a15..041dba1c2f 100644 --- a/includes/SpecialContributions.php +++ b/includes/SpecialContributions.php @@ -234,7 +234,7 @@ function wfSpecialContributions( $par = null ) { $urls = array(); foreach (array(20, 50, 100, 250, 500) as $num) - $urls[] = "".$wgLang->formatNum($num).""; + $urls[] = "".$wgLang->formatNum($num).""; $bits = implode($urls, ' | '); $prevnextbits = "$firstlast " . wfMsgHtml("viewprevnext", $prevlink, $nextlink, $bits); -- 2.20.1