From: Art Cancro Date: Thu, 16 Jan 2003 04:41:26 +0000 (+0000) Subject: * When displaying edit controls for time of day in the calendar, only show X-Git-Tag: v7.86~6035 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=342feccf5495ce9ce62683d4881aefff4a22bcd1 * When displaying edit controls for time of day in the calendar, only show minutes that are multiples of 5 ... unless the existing value is not a multiple of 5, in which case we show that too. --- diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 59e179ec0..aa0dcdbea 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,9 @@ $Log$ +Revision 400.85 2003/01/16 04:41:26 ajc +* When displaying edit controls for time of day in the calendar, only show + minutes that are multiples of 5 ... unless the existing value is not a + multiple of 5, in which case we show that too. + Revision 400.84 2003/01/15 17:34:04 ajc * event.c: fixed a misspelling * config.guess, config.sub: updated using latest from ftp.gnu.org @@ -1244,3 +1249,4 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix + diff --git a/webcit/calendar_tools.c b/webcit/calendar_tools.c index dfc97f3bc..37d953f15 100644 --- a/webcit/calendar_tools.c +++ b/webcit/calendar_tools.c @@ -135,10 +135,12 @@ void display_icaltimetype_as_webform(struct icaltimetype *t, char *prefix) { wprintf("Minute: "); wprintf("\n"); }