mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-22 23:02:43 +00:00
Monotone-Parent: ac7a4c345fb75cee6a4e001e43b5887e07bebca5
Monotone-Revision: 62d2998c5dfd81d8d42ae621ab990e8d12ba7eef Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-10-12T16:46:24 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -290,8 +290,12 @@ function changeCalendarDisplay(time, newView)
|
||||
{
|
||||
var url = ApplicationBaseURL + ((newView) ? newView : currentView);
|
||||
|
||||
var day = time['day'];
|
||||
var hour = time['hour'];
|
||||
var day = null;
|
||||
var hour = null;
|
||||
if (time) {
|
||||
day = time['day'];
|
||||
hour = time['hour'];
|
||||
}
|
||||
|
||||
if (!day)
|
||||
day = currentDay;
|
||||
|
||||
Reference in New Issue
Block a user