mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
fixed sql error caused by using sort="account_lid" instead of order="account_lid"
This commit is contained in:
parent
144833c5ff
commit
3e5e9bf730
@ -445,7 +445,7 @@ class preferences_settings
|
||||
$user_apps = $GLOBALS['egw']->acl->get_user_applications($id);
|
||||
$sel_options['appname'] = array_intersect_key($sel_options['appname'], $user_apps);
|
||||
}
|
||||
foreach($GLOBALS['egw']->accounts->search(array('type' => 'groups', 'sort' => 'account_lid')) as $account_id => $group)
|
||||
foreach($GLOBALS['egw']->accounts->search(array('type' => 'groups', 'order' => 'account_lid')) as $account_id => $group)
|
||||
{
|
||||
$sel_options['type']['group:'.$account_id] = lang('Preferences').' '.common::display_fullname($group['account_lid'], '', '', $account_id);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user