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