diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-02-24 10:57:10 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-02-24 10:57:10 +0800 |
commit | 5e9ef016916499fd22d3da2c2acaab71a5205a98 (patch) | |
tree | 0c5d4f475e729de8c4329dceaf5e767af198aa88 /calendar/gui | |
parent | 7713ac213b64b1713583938b5ad044e2e8e0e307 (diff) | |
download | gsoc2013-evolution-5e9ef016916499fd22d3da2c2acaab71a5205a98.tar.gz gsoc2013-evolution-5e9ef016916499fd22d3da2c2acaab71a5205a98.tar.zst gsoc2013-evolution-5e9ef016916499fd22d3da2c2acaab71a5205a98.zip |
Fixes #330677
svn path=/trunk/; revision=31572
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/itip-utils.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index 67b886892b..08af83cab3 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -723,12 +723,9 @@ comp_content_type (ECalComponent *comp, ECalComponentItipMethod method) { char tmp[256]; - if (method == E_CAL_COMPONENT_METHOD_REPLY) { - sprintf (tmp, "text/plain"); - } else - sprintf (tmp, "text/calendar; name=\"%s\"; charset=utf-8; METHOD=%s", - e_cal_component_get_vtype (comp) == E_CAL_COMPONENT_FREEBUSY ? - "freebusy.ifb" : "calendar.ics", itip_methods[method]); + sprintf (tmp, "text/calendar; name=\"%s\"; charset=utf-8; METHOD=%s", + e_cal_component_get_vtype (comp) == E_CAL_COMPONENT_FREEBUSY ? + "freebusy.ifb" : "calendar.ics", itip_methods[method]); return CORBA_string_dup (tmp); @@ -1182,7 +1179,7 @@ itip_send_comp (ECalComponentItipMethod method, ECalComponent *send_comp, goto cleanup; /* Recipients */ - to_list = comp_to_list (method, comp, users, TRUE); + to_list = comp_to_list (method, comp, users, FALSE); if (method != E_CAL_COMPONENT_METHOD_PUBLISH) { if (to_list == NULL || to_list->_length == 0) { /* We sent them all via the server */ @@ -1336,6 +1333,7 @@ reply_to_calendar_comp (ECalComponentItipMethod method, ECalComponent *send_comp GNOME_Evolution_Composer_RecipientList *cc_list = NULL; GNOME_Evolution_Composer_RecipientList *bcc_list = NULL; CORBA_char *subject = NULL, *content_type = NULL; + char tmp [256]; CORBA_char *from = NULL; char *ical_string; CORBA_Environment ev; @@ -1388,7 +1386,8 @@ reply_to_calendar_comp (ECalComponentItipMethod method, ECalComponent *send_comp /* Content type */ - content_type = comp_content_type (comp, method); + sprintf (tmp, "text/plain"); + content_type = CORBA_string_dup (tmp); top_level = comp_toplevel_with_zones (method, comp, client, zones); ical_string = icalcomponent_as_ical_string (top_level); |