skip current user only for users, not group(-preferences)

This commit is contained in:
Ralf Becker 2014-07-23 13:16:01 +00:00
parent 1bda4f1337
commit 7ed3f45649
2 changed files with 3 additions and 5 deletions

View File

@ -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'];
}
$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');

View File

@ -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();