From: Brion Vibber Date: Mon, 12 Dec 2011 15:51:34 +0000 (+0000) Subject: Followup r105853 -- another instance of $request->getVal('filter', 'all') to replace... X-Git-Tag: 1.31.0-rc.0~26040 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=5e81af7ebc7064a11c099747a9bd97d91bbfc58f;p=lhc%2Fweb%2Fwiklou.git Followup r105853 -- another instance of $request->getVal('filter', 'all') to replace with $this->filter --- 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', '' ) );