* Escaped & correctly in Special:Contributions
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Tue, 5 Jul 2005 12:36:01 +0000 (12:36 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Tue, 5 Jul 2005 12:36:01 +0000 (12:36 +0000)
RELEASE-NOTES
includes/SpecialContributions.php

index 6e807f8..aa20ded 100644 (file)
@@ -501,6 +501,8 @@ of MediaWiki:Newpagetext) to &action=edit, if page is new.
 * Use xml:space="preserve" hint on export <text> elements
 * Make language variant selection work again for zh
 
+== Changes since 1.5beta2 ==
+* Escaped & correctly in Special:Contributions
 
 === Caveats ===
 
index 3b209a6..041dba1 100644 (file)
@@ -234,7 +234,7 @@ function wfSpecialContributions( $par = null ) {
 
        $urls = array();
        foreach (array(20, 50, 100, 250, 500) as $num)
-               $urls[] = "<a href=\"$myurl&offset=$offset&limit={$num}\">".$wgLang->formatNum($num)."</a>";
+               $urls[] = "<a href=\"$myurl&amp;offset=$offset&amp;limit={$num}\">".$wgLang->formatNum($num)."</a>";
        $bits = implode($urls, ' | ');
 
        $prevnextbits = "$firstlast " . wfMsgHtml("viewprevnext", $prevlink, $nextlink, $bits);