Error 'ArrayOfEvents[0] has no properties' in unifinder.js, r=lilmatt, mvl

This commit is contained in:
jminta%gmail.com 2007-01-10 14:59:05 +00:00
Родитель b2cbc94366
Коммит d29750e28a
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -368,7 +368,9 @@ function unifinderOnSelect( event )
dump( "e is "+e+"\n" );
return;
}
ArrayOfEvents.push( calendarEvent );
if (calendarEvent) {
ArrayOfEvents.push(calendarEvent);
}
}
}