Skip to content

Commit

Permalink
(js) Fix saving monthly BYDAY recurrence
Browse files Browse the repository at this point in the history
Fixes #3948
  • Loading branch information
cgx committed Dec 19, 2016
1 parent 93f559a commit e739ed4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS
Expand Up @@ -19,6 +19,7 @@ Bug fixes
- [web] use the organizer's alarm by default when accepting IMIP messages (#3934)
- [web] switch on "Remember username" when cookie username is set
- [web] return login page for unknown users (#2135)
- [web] fixed saving monthly recurrence rule with "by day" condition (#3948)
- [eas] properly skip folders we don't want to synchronize (#3943)
- [eas] fixed 30 mins freebusy offset with S Planner

Expand Down
3 changes: 2 additions & 1 deletion UI/WebServerResources/js/Scheduler/Component.service.js
Expand Up @@ -641,7 +641,8 @@
(this.repeat.interval > 1 ||
this.repeat.days && this.repeat.days.length > 0 ||
this.repeat.monthdays && this.repeat.monthdays.length > 0 ||
this.repeat.months && this.repeat.months.length > 0);
this.repeat.months && this.repeat.months.length > 0 ||
this.repeat.month && this.repeat.month.day);
return b;
};

Expand Down

0 comments on commit e739ed4

Please sign in to comment.