forked from extern/egroupware
skip current user only for users, not group(-preferences)
This commit is contained in:
parent
1bda4f1337
commit
7ed3f45649
@ -1581,11 +1581,9 @@ END:VTIMEZONE
|
||||
foreach (calendar_bo::list_calendars($hook_data['account_id']) as $entry)
|
||||
{
|
||||
$account_id = $entry['grantor'];
|
||||
if ($account_id != $hook_data['account_id']) // skip current user
|
||||
{
|
||||
$cals[$account_id] = $entry['name'];
|
||||
}
|
||||
}
|
||||
if ($hook_data['account_id'] > 0) unset($cals[$hook_data['account_id']]); // skip current user
|
||||
}
|
||||
$cals['G'] = lang('Primary group');
|
||||
$cals['A'] = lang('All');
|
||||
|
@ -1547,7 +1547,7 @@ class calendar_groupdav extends groupdav_handler
|
||||
{
|
||||
$calendars[$entry['grantor']] = $entry['name'];
|
||||
}
|
||||
unset($calendars[$user]);
|
||||
if ($user > 0) unset($calendars[$user]); // skip current user
|
||||
}
|
||||
|
||||
$settings = array();
|
||||
|
Loading…
Reference in New Issue
Block a user