Bug 341522: fixed getAttendeeById

This commit is contained in:
daniel.boelzle%sun.com 2006-08-06 13:50:36 +00:00
Родитель 3304fabe3e
Коммит 6be179d6c9
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -403,7 +403,7 @@ calItemBase.prototype = {
getAttendeeById: function (id) {
var attendees = this.getAttendees({});
for (var i = 0; i < attendees.length; i++)
if (this.attendees[i].id == id)
if (attendees[i].id == id)
return attendees[i];
return null;
},