X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fevent.c;h=94fac68dbc9d4188cfea0eb40d42ff7728083431;hb=694a3ea878536e2deda1c0168e51837a31b81af7;hp=8f7c83f6e9e036caed731aa7e8b07a5a6418bc3c;hpb=c7a28913ad7fbcd263888e0bbb24b380d3a81b9c;p=citadel.git diff --git a/webcit/event.c b/webcit/event.c index 8f7c83f6e..94fac68db 100644 --- a/webcit/event.c +++ b/webcit/event.c @@ -3,7 +3,7 @@ */ /** * \defgroup EditCal Editing calendar events. - * + * \ingroup Calendaring */ /*@{*/ #include "webcit.h" @@ -270,17 +270,14 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum) * Determine who is the organizer of this event. * We need to determine "me" or "not me." */ - organizer = icalcomponent_get_first_property(vevent, - ICAL_ORGANIZER_PROPERTY); + organizer = icalcomponent_get_first_property(vevent, ICAL_ORGANIZER_PROPERTY); if (organizer != NULL) { strcpy(organizer_string, icalproperty_get_organizer(organizer)); if (!strncasecmp(organizer_string, "MAILTO:", 7)) { strcpy(organizer_string, &organizer_string[7]); striplt(organizer_string); - lprintf(9, "ISME %s\n", organizer_string); serv_printf("ISME %s", organizer_string); serv_getln(buf, sizeof buf); - lprintf(9, "%s\n", buf); if (buf[0] == '2') { organizer_is_me = 1; }