Enabled hiding base DNs that users dont have access to
This commit is contained in:
@@ -103,7 +103,7 @@ abstract class Tree {
|
||||
$return = array();
|
||||
|
||||
foreach ($this->entries as $details)
|
||||
if ($details->isBaseDN())
|
||||
if ($details->isBaseDN() AND ((! $this->getServer()->getValue('server','hide_noaccess_base')) OR $details->isInLdap()))
|
||||
array_push($return,$details);
|
||||
|
||||
return $return;
|
||||
|
Reference in New Issue
Block a user