зеркало из https://github.com/mozilla/pjs.git
Fixing bug 165693
This commit is contained in:
Родитель
9f45386530
Коммит
fd404cb2c2
|
@ -184,7 +184,11 @@ function addEventsToCalendar( calendarEventArray, silent )
|
|||
|
||||
// open the event dialog with the event to add
|
||||
if( silent )
|
||||
gICalLib.addEvent( calendarEvent );
|
||||
{
|
||||
var DefaultServer = gCalendarWindow.calendarManager.getDefaultServer();
|
||||
|
||||
gICalLib.addEvent( calendarEvent, DefaultServer.path );
|
||||
}
|
||||
else
|
||||
editNewEvent( calendarEvent );
|
||||
}
|
||||
|
|
|
@ -301,6 +301,11 @@ calendarManager.prototype.refreshAllRemoteCalendars = function calMan_refreshAll
|
|||
}
|
||||
}
|
||||
|
||||
calendarManager.prototype.getDefaultServer = function calMan_getDefaultServer()
|
||||
{
|
||||
return( this.calendars[0] );
|
||||
}
|
||||
|
||||
|
||||
function onResponseAndRefresh( )
|
||||
{
|
||||
|
|
|
@ -184,7 +184,11 @@ function addEventsToCalendar( calendarEventArray, silent )
|
|||
|
||||
// open the event dialog with the event to add
|
||||
if( silent )
|
||||
gICalLib.addEvent( calendarEvent );
|
||||
{
|
||||
var DefaultServer = gCalendarWindow.calendarManager.getDefaultServer();
|
||||
|
||||
gICalLib.addEvent( calendarEvent, DefaultServer.path );
|
||||
}
|
||||
else
|
||||
editNewEvent( calendarEvent );
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче