From 339241cce7d24aa708d63d896ade136f2a777c35 Mon Sep 17 00:00:00 2001 From: nathangray Date: Tue, 4 Oct 2016 09:43:52 -0600 Subject: [PATCH] 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. --- calendar/js/et2_widget_daycol.js | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/calendar/js/et2_widget_daycol.js b/calendar/js/et2_widget_daycol.js index 353c1c56c1..c9c44763c0 100644 --- a/calendar/js/et2_widget_daycol.js +++ b/calendar/js/et2_widget_daycol.js @@ -1075,12 +1075,9 @@ var et2_calendar_daycol = (function(){ "use strict"; return et2_valueWidget.exte var options = { date: _ev.target.dataset.date || this.options.date, hour: _ev.target.dataset.hour || this._parent.options.day_start, - minute: _ev.target.dataset.minute || 0 + minute: _ev.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; } @@ -1094,11 +1091,8 @@ var et2_calendar_daycol = (function(){ "use strict"; return et2_valueWidget.exte var options = { start: this.date.toJSON(), end: end, - non_blocking: true - } - if (this.options.owner.toString() !== app.calendar.state.owner.toString()) - { - options.owner = this.options.owner; + non_blocking: true, + owner: this.options.owner } this.egw().open(null, 'calendar', 'add', options, '_blank'); return false;