From f4fc70e1da6133f213b966ef8c6a829787ed9334 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Wed, 15 Mar 2006 17:41:27 +0000 Subject: [PATCH] fixed call of unknown function (1450464) --- lam/HISTORY | 3 ++- lam/lib/modules/posixAccount.inc | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lam/HISTORY b/lam/HISTORY index b044192d..a7afc543 100644 --- a/lam/HISTORY +++ b/lam/HISTORY @@ -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 diff --git a/lam/lib/modules/posixAccount.inc b/lam/lib/modules/posixAccount.inc index 232e8979..0b814238 100644 --- a/lam/lib/modules/posixAccount.inc +++ b/lam/lib/modules/posixAccount.inc @@ -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]; } }