mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Fix edit series confirm dialog pops up for new entries which are not recurrent event
This commit is contained in:
parent
764d7f99a5
commit
5347c8d133
@ -939,7 +939,7 @@ app.classes.calendar = AppJS.extend(
|
||||
var whole_day = this.et2.getWidgetById('whole_day').get_value();
|
||||
var button = _button;
|
||||
var that = this;
|
||||
if (typeof content != 'undefined' && typeof content.recur_type != 'undefined' && content.recur_type != 0)
|
||||
if (typeof content != 'undefined' && typeof content.recur_type != 'undefined' && content.recur_type != null)
|
||||
{
|
||||
if (content.start != start_date || content.whole_day.toString() != whole_day)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user