From 8dd320e77c3f1dd18149fc8b45f1182544dae6cd Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Tue, 28 Jun 2005 17:34:07 +0000 Subject: [PATCH] * Fixed a bug where Special:Contributions wouldn't remember the 'invert' status between next/previous buttons. --- RELEASE-NOTES | 2 ++ includes/SpecialContributions.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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 ); -- 2.20.1