From 3ec7990023be2260f2155e17099ee1574cfbc6c8 Mon Sep 17 00:00:00 2001 From: Jure Kajzer Date: Fri, 13 May 2011 23:42:06 +0000 Subject: [PATCH] * addon to previous --- includes/specials/SpecialContributions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/specials/SpecialContributions.php b/includes/specials/SpecialContributions.php index 39e84a3766..be0aff3bcb 100644 --- a/includes/specials/SpecialContributions.php +++ b/includes/specials/SpecialContributions.php @@ -605,7 +605,8 @@ class ContribsPager extends ReverseChronologicalPager { } function getNamespaceCond() { - if( $this->namespace !== '' ) { + global $wgMiserMode; + if( $this->namespace !== '' && !$wgMiserMode ) { return array( 'page_namespace' => (int)$this->namespace ); } else { return array(); -- 2.20.1