forked from extern/egroupware
* Calendar - fix bug where private events for multiple users in week view only showed for one user
This commit is contained in:
parent
0ececf8c78
commit
39759eb267
@ -572,6 +572,8 @@ class calendar_bo
|
||||
* otherwise the original recuring event (with the first start- + enddate) is returned
|
||||
* num_rows int number of entries to return, default or if 0, max_entries from the prefs
|
||||
* order column-names plus optional DESC|ASC separted by comma
|
||||
* private_allowed array Array of user IDs that are allowed when clearing private
|
||||
* info, defaults to users
|
||||
* ignore_acl if set and true no check_perms for a general Acl::READ grants is performed
|
||||
* enum_groups boolean if set and true, group-members will be added as participants with status 'G'
|
||||
* cols string|array columns to select, if set an iterator will be returned
|
||||
@ -681,7 +683,7 @@ class calendar_bo
|
||||
}
|
||||
if (!$params['ignore_acl'] && ($is_private || (!$event['public'] && $filter == 'hideprivate')))
|
||||
{
|
||||
$this->clear_private_infos($events[$id],$users);
|
||||
$this->clear_private_infos($events[$id],$params['private_allowed'] ? $params['private_allowed'] : $users);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -383,6 +383,9 @@ class calendar_uilist extends calendar_ui
|
||||
{
|
||||
$search_params['users'] = $params['owner'] ? $params['owner'] : explode(',',$this->owner);
|
||||
}
|
||||
// Allow private to stay for all viewed owners, even if in separate calendars
|
||||
$search_params['private_allowed'] = (array)$params['selected_owners'] + (array)$search_params['users'];
|
||||
|
||||
if ($params['col_filter'])
|
||||
{
|
||||
$col_filter = array();
|
||||
|
@ -2813,7 +2813,7 @@ app.classes.calendar = (function(){ "use strict"; return AppJS.extend(
|
||||
if(need_data && seperate_owners)
|
||||
{
|
||||
this._fetch_data(
|
||||
jQuery.extend({}, state, {owner: value[i].owner}),
|
||||
jQuery.extend({}, state, {owner: value[i].owner, selected_owners: state.owner}),
|
||||
this.sidebox_et2 ? null : this.et2.getInstanceManager()
|
||||
);
|
||||
need_data = false;
|
||||
@ -2875,7 +2875,8 @@ app.classes.calendar = (function(){ "use strict"; return AppJS.extend(
|
||||
filter:'custom', // Must be custom to get start & end dates
|
||||
status_filter: state.status_filter,
|
||||
cat_id: cat_id,
|
||||
csv_export: false
|
||||
csv_export: false,
|
||||
selected_owners: state.selected_owners
|
||||
});
|
||||
// Show ajax loader
|
||||
if(typeof framework !== 'undefined')
|
||||
|
Loading…
Reference in New Issue
Block a user