From: Ævar Arnfjörð Bjarmason Date: Tue, 28 Jun 2005 17:34:07 +0000 (+0000) Subject: * Fixed a bug where Special:Contributions wouldn't remember the 'invert' X-Git-Tag: 1.5.0beta2~152 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=8dd320e77c3f1dd18149fc8b45f1182544dae6cd;p=lhc%2Fweb%2Fwiklou.git * Fixed a bug where Special:Contributions wouldn't remember the 'invert' status between next/previous buttons. --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 5ea6640dcd..621fe1cf89 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -402,6 +402,8 @@ Various bugfixes, small features, and a few experimental things: * Don't show old debug messages in watchlist * (bug 2576) Fix recording of transclusion links * (bug 2577) Allow sysops to enter non-standard block times +* Fixed a bug where Special:Contributions wouldn't remember the 'invert' + status between next/previous buttons. === Caveats === diff --git a/includes/SpecialContributions.php b/includes/SpecialContributions.php index 1750b4d959..fc90a43bf1 100644 --- a/includes/SpecialContributions.php +++ b/includes/SpecialContributions.php @@ -109,7 +109,7 @@ function wfSpecialContributions( $par = null ) { $sl = wfViewPrevNext( $offset, $limit, $wgContLang->specialpage( "Contributions" ), - "hideminor={$hideminor}&namespace={$namespace}&target=" . wfUrlEncode( $target ), + "hideminor=$hideminor&namespace=$namespace&invert=$invert&target=" . wfUrlEncode( $target ), ($numRows) <= $limit); $shm = wfMsg( "showhideminor", $mlink );