Skip to content
Snippets Groups Projects
Commit 9606668b authored by Johannes Hörmann's avatar Johannes Hörmann
Browse files

remove unneeded / old functions from Calendar_lib

parent 3fad62e9
No related branches found
No related tags found
No related merge requests found
......@@ -28,16 +28,16 @@ if ( pFilter.cancelled == "true" )
stati.push(calendars.STATUS_CANCELLED);
if ( pFilter.confirmed == "true" )
stati.push(mapCalendarStatus(calendars.STATUS_CONFIRMED, calendars.getBackendType() ));
stati.push(CalendarUtil.mapCalendarStatus(calendars.STATUS_CONFIRMED, calendars.getBackendType() ));
if (getCalendarSystemType(calendars.VEVENT) == calendars.BACKEND_EXCHANGEWS && pFilter.free == "true")
if (CalendarUtil.getCalendarSystemType(calendars.VEVENT) == calendars.BACKEND_EXCHANGEWS && pFilter.free == "true")
stati.push(calendars.STATUS_FREE);
if ( pFilter.user != "" )
user = (pFilter.user).trim();
for ( var z = 0; z < stati.length; z++ )
_addEntryCondition(conditions, ++conditioncount,
CalendarUtil.addEntryCondition(conditions, ++conditioncount,
{
TYPE: calendars.VEVENT,
START: start,
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment