From: Aaron Schulz Date: Sun, 2 Oct 2011 20:50:48 +0000 (+0000) Subject: Fixed broken ipb_deleted condition. Does not effect the special page since it is... X-Git-Tag: 1.31.0-rc.0~27305 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=015d0c4861d001c68d8fae1a3057b1310bbd961e;p=lhc%2Fweb%2Fwiklou.git Fixed broken ipb_deleted condition. Does not effect the special page since it is redundant for that use (the condition is added elsewhere). --- diff --git a/includes/specials/SpecialBlockList.php b/includes/specials/SpecialBlockList.php index 89f3dadeaf..90405d8b6f 100644 --- a/includes/specials/SpecialBlockList.php +++ b/includes/specials/SpecialBlockList.php @@ -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;