mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-07 14:39:56 +01:00
Fix problem with static access to non-static class
(probably imported by a backport from trunk)
This commit is contained in:
parent
3ed265e4fe
commit
efc00ad7b1
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user