Fix bug 459371 - Convert eMail to event, try to add attendees without saving -> Attendees dialog is read only (regression). r=philipp

This commit is contained in:
Daniel Boelzle [:dbo] 2008-11-13 09:43:40 +01:00
Родитель f1c5483af9
Коммит edb586b9e7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -233,7 +233,7 @@ function calWcapCalendar_isInvitation(item) {
}
var calId = this.calId;
var orgCalId = getCalId(item.organizer);
if (orgCalId == calId) {
if (!orgCalId || (orgCalId == calId)) {
return false;
}
return (this.getInvitedAttendee(item) != null);