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:
parent
9abf60de99
commit
015d0c4861
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue