removed main-Module
This commit is contained in:
parent
0cb64e5f7b
commit
f92b77b64f
|
@ -200,8 +200,9 @@ class cache {
|
|||
$scopes = array_keys($this->attributes);
|
||||
foreach ($scopes as $scope) {
|
||||
// Get Scope
|
||||
$function = '$suffix = $this->config->get_'.ucfirst($scope).'Suffix();';
|
||||
If ($scope != '*') eval($function);
|
||||
//$function = '$suffix = $this->config->get_'.ucfirst($scope).'Suffix();';
|
||||
If ($scope != '*') //eval($function);
|
||||
$suffix = call_user_func(array($this->config, 'get_'.ucfirst($scope).'Suffix'));
|
||||
else $suffix = '';
|
||||
// Get Data from ldap
|
||||
$search = $this->attributes[$scope];
|
||||
|
@ -243,7 +244,8 @@ class cache {
|
|||
print $function;
|
||||
print "<br>";
|
||||
// *** fixme, where is get_DomainSuffix
|
||||
If ($scope != '*') eval($function);
|
||||
If ($scope != '*') //eval($function);
|
||||
$suffix = call_user_func(array($$this->config, 'get_'.ucfirst($allowed_types[$i]).'Suffix'));
|
||||
else $suffix = '';
|
||||
if (substr($suffix, $dn)) $singlescope = $allowed_types[$i];
|
||||
}
|
||||
|
@ -254,7 +256,8 @@ class cache {
|
|||
// Get Scope
|
||||
foreach ($allowed_types as $scope) {
|
||||
$function = '$suffix = $this->config->get_'.ucfirst($scope).'Suffix();';
|
||||
eval($function);
|
||||
//eval($function);
|
||||
$suffix = call_user_func(array($$this->config, 'get_'.ucfirst($scope).'Suffix'));
|
||||
if (strpos($dn, $suffix)) $singlescope = $scope;
|
||||
}
|
||||
if (!isset($singlescope)) trigger_error(sprintf(_('Invalid dn: %s. DN not covered by any suffix.'), $dn), E_USER_WARN);
|
||||
|
@ -308,11 +311,14 @@ class cache {
|
|||
*/
|
||||
function findgroups() {
|
||||
$dn_groups = $_SESSION['cache']->get_cache('cn', 'posixGroup', 'group');
|
||||
if (is_array($dn_groups)) {
|
||||
$DNs = array_keys($dn_groups);
|
||||
foreach ($DNs as $DN)
|
||||
$return[] = $dn_groups[$DN][0];
|
||||
return $return;
|
||||
}
|
||||
return array();
|
||||
}
|
||||
|
||||
|
||||
/* This function will return the groupname to an existing gidNumber
|
||||
|
|
Loading…
Reference in New Issue