diff --git a/o2web/source/x_component_Calendar/DayView.js b/o2web/source/x_component_Calendar/DayView.js index 47c37233b6041d6fff9cf814aa98efc826b2fe69..5a4ddcf5ceacac68bb0d80c0da45f871a5433784 100644 --- a/o2web/source/x_component_Calendar/DayView.js +++ b/o2web/source/x_component_Calendar/DayView.js @@ -86,10 +86,8 @@ var MWFCalendarDayView = MWF.xApplication.Calendar.DayView = new Class({ if (this.calendar) this.calendar.reLoadCalendar(); }, recordStatus : function(){ - var date = ""; - if (this.calendar) date = this.calendar.date; return { - date : date.toString() + date : (this.calendar && this.calendar.date) ? this.calendar.date.format( "db" ) : "" }; }, destroy: function(){ diff --git a/o2web/source/x_component_Calendar/MonthView.js b/o2web/source/x_component_Calendar/MonthView.js index fb763c4bef68e8d79c35291cdce75715d54f7ac7..5972b5959d4c5c6ec256dd375c00d7d6a30787ff 100644 --- a/o2web/source/x_component_Calendar/MonthView.js +++ b/o2web/source/x_component_Calendar/MonthView.js @@ -94,10 +94,8 @@ var MWFCalendarMonthView = MWF.xApplication.Calendar.MonthView = new Class({ if (this.calendar) this.calendar.reLoadCalendar(); }, recordStatus : function(){ - var date = ""; - if (this.calendar) date = this.calendar.date; return { - date : date.toString() + date : (this.calendar && this.calendar.date) ? this.calendar.date.format( "db" ) : "" }; }, destroy: function(){ diff --git a/o2web/source/x_component_Calendar/WeekView.js b/o2web/source/x_component_Calendar/WeekView.js index edac3448aebf348d3efbf8918385934a9b1b04a7..267696386d9c9c61ef4356f4e629494db612c807 100644 --- a/o2web/source/x_component_Calendar/WeekView.js +++ b/o2web/source/x_component_Calendar/WeekView.js @@ -105,10 +105,8 @@ var MWFCalendarWeekView = MWF.xApplication.Calendar.WeekView = new Class({ if (this.calendar) this.calendar.reLoadCalendar(); }, recordStatus : function(){ - var date = ""; - if (this.calendar) date = this.calendar.baseDate; return { - date : date.toString() + date : (this.calendar && this.calendar.date) ? this.calendar.date.format( "db" ) : "" }; }, destroy: function(){