Fixed broken ipb_deleted condition. Does not effect the special page since it is...
authorAaron Schulz <aaron@users.mediawiki.org>
Sun, 2 Oct 2011 20:50:48 +0000 (20:50 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Sun, 2 Oct 2011 20:50:48 +0000 (20:50 +0000)
includes/specials/SpecialBlockList.php

index 89f3dad..90405d8 100644 (file)
@@ -367,7 +367,7 @@ class BlockListPager extends TablePager {
 
                # Is the user allowed to see hidden blocks?
                if ( !$this->getUser()->isAllowed( 'hideuser' ) ){
-                       $conds['ipb_deleted'] = 0;
+                       $info['conds']['ipb_deleted'] = 0;
                }
 
                return $info;