From 5e81af7ebc7064a11c099747a9bd97d91bbfc58f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 12 Dec 2011 15:51:34 +0000 Subject: [PATCH] Followup r105853 -- another instance of $request->getVal('filter', 'all') to replace with $this->filter --- includes/specials/SpecialAllmessages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialAllmessages.php b/includes/specials/SpecialAllmessages.php index 4f2b84d97f..2bfea4c3fa 100644 --- a/includes/specials/SpecialAllmessages.php +++ b/includes/specials/SpecialAllmessages.php @@ -121,7 +121,7 @@ class AllmessagesTablePager extends TablePager { if( $this->filter === 'all' ){ $this->custom = null; // So won't match in either case } else { - $this->custom = ($request->getVal( 'filter' ) == 'unmodified'); + $this->custom = ($this->filter == 'unmodified'); } $prefix = $this->getLanguage()->ucfirst( $request->getVal( 'prefix', '' ) ); -- 2.20.1