fixed call of unknown function (1450464)
This commit is contained in:
parent
f303e7fc30
commit
f4fc70e1da
|
@ -3,7 +3,8 @@
|
||||||
- Samba 3: readded time zone selection for logon hours
|
- Samba 3: readded time zone selection for logon hours
|
||||||
- Unix: merged password hash settings for Unix users and groups
|
- Unix: merged password hash settings for Unix users and groups
|
||||||
- fixed bugs:
|
- fixed bugs:
|
||||||
-> Samba hash values were wrong in some rare cases (1440021)
|
-> Samba 3: hash values were wrong in some rare cases (1440021)
|
||||||
|
-> Unix: call of unknown function (1450464)
|
||||||
|
|
||||||
|
|
||||||
01.03.2006 1.0.0
|
01.03.2006 1.0.0
|
||||||
|
|
|
@ -527,7 +527,7 @@ class posixAccount extends baseModule {
|
||||||
// Add new memberships
|
// Add new memberships
|
||||||
if (is_array($this->groups))
|
if (is_array($this->groups))
|
||||||
foreach ($this->groups as $group) {
|
foreach ($this->groups as $group) {
|
||||||
$dn = $_SESSION['ldap']->in_cache ($group, 'cn', 'group');
|
$dn = $_SESSION['cache']->in_cache($group, 'cn', 'group');
|
||||||
$return[$dn]['add']['memberUid'][0] = $this->attributes['uid'][0];
|
$return[$dn]['add']['memberUid'][0] = $this->attributes['uid'][0];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue