Fix problem with static access to non-static class

(probably imported by a backport from trunk)
This commit is contained in:
Hans-Jürgen Tappe 2010-04-21 20:22:08 +00:00
parent 3ed265e4fe
commit efc00ad7b1

View File

@ -795,7 +795,7 @@ class accounts_ldap
'account_firstname' => $this->translation->convert($allVals['cn'][0],'utf-8'),
'account_lastname' => lang('Group'),
'account_status' => 'A',
'account_fullname' => translation::convert($allVals['cn'][0],'utf-8'),
'account_fullname' => $this->translation->convert($allVals['cn'][0],'utf-8'),
);
if (isset($totalcount)) ++$totalcount;
}