From: Ævar Arnfjörð Bjarmason Date: Tue, 5 Jul 2005 12:36:01 +0000 (+0000) Subject: * Escaped & correctly in Special:Contributions X-Git-Tag: 1.5.0beta3~51 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=95a776404f88a264a773b410c2d108c614819a5b;p=lhc%2Fweb%2Fwiklou.git * Escaped & correctly in Special:Contributions --- 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);