mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
removed a bug caused by previos comit (does not read account_data)
This commit is contained in:
parent
11891bb25a
commit
7a151f621c
@ -74,8 +74,13 @@
|
||||
|
||||
if (!is_array($account_data))
|
||||
{
|
||||
$GLOBALS['phpgw']->accounts->read_repository();
|
||||
$account_data = $GLOBALS['phpgw']->accounts->data;
|
||||
if (!isset($this->account_data[$id])) // do some cacheing
|
||||
{
|
||||
$GLOBALS['phpgw']->accounts->accounts($id);
|
||||
$GLOBALS['phpgw']->accounts->read_repository();
|
||||
$this->account_data[$id] = $GLOBALS['phpgw']->accounts->data;
|
||||
}
|
||||
$account_data = $this->account_data[$id];
|
||||
}
|
||||
if ($GLOBALS['phpgw_info']['user']['preferences']['infolog']['longNames'])
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user