From 942a134f632edb88ec747e9672d994460dd4275d Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 14 Oct 2008 21:47:17 +0000 Subject: [PATCH] More recurrence editor stuff --- webcit/event.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/webcit/event.c b/webcit/event.c index 6c82bf611..0e853f758 100644 --- a/webcit/event.c +++ b/webcit/event.c @@ -574,8 +574,18 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum, int which_rryeartype_is_preselected = 0; /* FIXME set default correctly */ wprintf("
"); /* begin 'yearday_selector' div */ - wprintf("(X) every (99) (Octobuary)
"); /* FIXME */ - wprintf("(X) on the (Grelfth) (Funday) of (Octobuary)
"); /* FIXME */ + wprintf("", + ((which_rryeartype_is_preselected == 0) ? "checked" : "") + ); + wprintf("every (99) (Octobuary)
"); /* FIXME */ + + wprintf("", + ((which_rrmonthtype_is_preselected == 1) ? "checked" : "") + ); + + wprintf("on the (Grelfth) (Funday) of (Octobuary)
"); /* FIXME */ wprintf("
\n"); /* end 'yearday_selector' div */ -- 2.39.2