mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-28 09:38:53 +01:00
missing account_description stuff for sql
This commit is contained in:
parent
f6a1c104b0
commit
5928048fd0
@ -528,7 +528,7 @@ class accounts_sql
|
||||
$accounts = array();
|
||||
foreach((array) $GLOBALS['egw']->contacts->search($criteria,
|
||||
array_merge(array(1,'n_given','n_family','id','created','modified',$this->table.'.account_id AS account_id'),$email_cols),
|
||||
$order,"account_lid,account_type,account_status,account_expires,account_primary_group",
|
||||
$order,"account_lid,account_type,account_status,account_expires,account_primary_group,account_description",
|
||||
$wildcard,false,$query[0] == '!' ? 'AND' : 'OR',
|
||||
$param['offset'] ? array($param['start'], $param['offset']) : (is_null($param['start']) ? false : $param['start']),
|
||||
$filter,$join) as $contact)
|
||||
@ -550,6 +550,7 @@ class accounts_sql
|
||||
// addressbook_bo::search() returns everything in user-time, need to convert to server-time
|
||||
'account_created' => egw_time::user2server($contact['created']),
|
||||
'account_modified' => egw_time::user2server($contact['modified']),
|
||||
'account_description' => $contact['account_description'],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user