aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/itip-utils.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 9fb85e8b8e..28da9dd4db 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,10 @@
+2004-09-21 Chenthill Palanisamy <pchenthill@novell.com>
+
+ Fixes #65682
+ * gui/itip-utils.c
+ (itip_send_comp): check the static capability before
+ booking the deletion.
+
2004-09-15 JP Rosevear <jpr@novell.com>
Fixes #55172
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c
index ce893a48ec..d78d2994b6 100644
--- a/calendar/gui/itip-utils.c
+++ b/calendar/gui/itip-utils.c
@@ -845,7 +845,7 @@ itip_send_comp (ECalComponentItipMethod method, ECalComponent *send_comp,
CORBA_exception_init (&ev);
/* Give the server a chance to manipulate the comp */
- if (method != E_CAL_COMPONENT_METHOD_PUBLISH) {
+ if (method != E_CAL_COMPONENT_METHOD_PUBLISH && !e_cal_get_save_schedules (client)) {
if (!comp_server_send (method, send_comp, client, zones, &users))
goto cleanup;
}