X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Fcalendar_view.c;h=1b6e8681ebe2f9f3f2deeeb3ef7b5cf666f403c7;hp=03e80e5d15c1f4b2daf99047e4a5ae3005daeb40;hb=c55a6857b24843d83a0fd43a9613f77852ffadc6;hpb=f93256d595cb4435e6ceb5e4b8203b92abec7442 diff --git a/webcit/calendar_view.c b/webcit/calendar_view.c index 03e80e5d1..1b6e8681e 100644 --- a/webcit/calendar_view.c +++ b/webcit/calendar_view.c @@ -198,7 +198,6 @@ void calendar_month_view_display_events(int year, int month, int day) starting_tm.tm_hour = 0; starting_tm.tm_min = 0; today_start_t = icaltime_from_timet_with_zone(mktime(&starting_tm), 0, icaltimezone_get_utc_timezone()); - today_start_t.is_utc = 1; memset(&ending_tm, 0, sizeof(struct tm)); ending_tm.tm_year = year - 1900; @@ -207,7 +206,6 @@ void calendar_month_view_display_events(int year, int month, int day) ending_tm.tm_hour = 23; ending_tm.tm_min = 59; today_end_t = icaltime_from_timet_with_zone(mktime(&ending_tm), 0, icaltimezone_get_utc_timezone()); - today_end_t.is_utc = 1; /* * Create another one without caring about the timezone for all day events. @@ -854,7 +852,6 @@ void calendar_day_view_display_events(time_t thetime, starting_tm.tm_hour = 0; starting_tm.tm_min = 0; today_start_t = icaltime_from_timet_with_zone(mktime(&starting_tm), 0, icaltimezone_get_utc_timezone()); - today_start_t.is_utc = 1; memset(&ending_tm, 0, sizeof(struct tm)); ending_tm.tm_year = year - 1900; @@ -863,7 +860,6 @@ void calendar_day_view_display_events(time_t thetime, ending_tm.tm_hour = 23; ending_tm.tm_min = 59; today_end_t = icaltime_from_timet_with_zone(mktime(&ending_tm), 0, icaltimezone_get_utc_timezone()); - today_end_t.is_utc = 1; /* * Create another one without caring about the timezone for all day events.