fixed call of unknown function (1450464)

This commit is contained in:
Roland Gruber 2006-03-15 17:41:27 +00:00
parent f303e7fc30
commit f4fc70e1da
2 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,8 @@
- Samba 3: readded time zone selection for logon hours
- Unix: merged password hash settings for Unix users and groups
- 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

View File

@ -527,7 +527,7 @@ class posixAccount extends baseModule {
// Add new memberships
if (is_array($this->groups))
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];
}
}