Fixed broken ipb_deleted condition. Does not effect the special page since it is redundant for that use (the condition is added elsewhere).

This commit is contained in:
Aaron Schulz 2011-10-02 20:50:48 +00:00
parent 9abf60de99
commit 015d0c4861

View 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;