Always pass owner when creating a new appointment, server will check preference and decide who to add as participants. Fixes one more case where 'Just me' preference was not correctly handled - single week, single other user.

This commit is contained in:
nathangray 2016-10-04 09:43:52 -06:00 committed by Hadi Nategh
parent 1c637d8397
commit c32b947cd8

View File

@ -1861,12 +1861,9 @@ var et2_calendar_timegrid = (function(){ "use strict"; return et2_calendar_view.
var options = {
date: target.dataset.date || this.options.date,
hour: target.dataset.hour || this._parent.options.day_start,
minute: target.dataset.minute || 0
minute: target.dataset.minute || 0,
owner: this.options.owner
};
if (this.options.owner.toString() !== app.calendar.state.owner.toString())
{
options.owner = this.options.owner;
}
this.egw().open(null, 'calendar', 'add', options, '_blank');
return false;
}