Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
kolab
roundcube-plugins
Commits
efb350d0
Commit
efb350d0
authored
Dec 21, 2012
by
Thomas Bruederli
Browse files
Make sure invitations/updates are always sent if required (#1408)
parent
0ddd3fad
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/calendar/calendar_ui.js
View file @
efb350d0
...
...
@@ -685,7 +685,7 @@ function rcube_calendar_ui(settings)
data
.
attendees
=
[];
// tell server to send notifications
if
(
data
.
attendees
.
length
&&
organizer
&&
((
event
.
id
&&
notify
.
checked
)
||
(
!
event
.
id
&&
invite
.
checked
))
)
{
if
(
(
data
.
attendees
.
length
||
(
event
.
id
&&
event
.
attendees
.
length
))
&&
organizer
&&
(
notify
.
checked
||
invite
.
checked
))
{
data
.
_notify
=
1
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment