From 4052a9b96201ba65bf7a9fe68526355081b216a3 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 10 Nov 2008 22:10:43 +0000 Subject: [PATCH] Form-to-icalrecur logic for yearly events, select by date or by month/week/day. By date is complete. --- webcit/event.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/webcit/event.c b/webcit/event.c index cabf2f9b9..86142ad8c 100644 --- a/webcit/event.c +++ b/webcit/event.c @@ -938,7 +938,12 @@ void save_individual_event(icalcomponent *supplied_vevent, long msgnum, char *fr break; case ICAL_YEARLY_RECURRENCE: - /* FIXME implement this */ + if (!strcasecmp(bstr("rrmonthtype"), "rryeartype_ymday")) { + /* no further action is needed here */ + } + if (!strcasecmp(bstr("rrmonthtype"), "rryeartype_ywday")) { + /* FIXME implement this */ + } break; /* This one can't happen either. */ -- 2.39.2