From: Art Cancro Date: Wed, 21 Jan 2009 03:20:37 +0000 (+0000) Subject: * Summary view - don't display a time for all day events X-Git-Tag: v7.86~1587 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=b6c39145a2217420911674172dd837b78b0bcf71 * Summary view - don't display a time for all day events --- diff --git a/webcit/calendar_view.c b/webcit/calendar_view.c index 0af1842ec..323016ff3 100644 --- a/webcit/calendar_view.c +++ b/webcit/calendar_view.c @@ -1324,7 +1324,10 @@ void calendar_summary_view(void) { wprintf("\">"); } escputs((char *) icalproperty_get_comment(p)); - wprintf(" (%s)
\n", timestring); + if (!all_day_event) { + wprintf(" (%s)", timestring); + } + wprintf("
\n"); } } }