forked from extern/egroupware
Calendar: Make sure owner is sent as an array for proper processing of default_participant preference
This commit is contained in:
parent
5547a248c4
commit
c93c1e6dfa
@ -1793,7 +1793,7 @@ app.classes.calendar = (function(){ "use strict"; return AppJS.extend(
|
||||
// Some select things to pass on
|
||||
var mgr = widget.getRoot().getArrayMgr('content');
|
||||
var values = {
|
||||
owner: mgr.getEntry('owner'),
|
||||
owner: typeof mgr.getEntry('owner') == 'object' ? mgr.getEntry('owner') : (mgr.getEntry('owner')+'').split(','),
|
||||
participants: [],
|
||||
whole_day: mgr.getEntry('whole_day')
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user