]> code.citadel.org Git - citadel.git/commitdiff
* comments
authorArt Cancro <ajc@citadel.org>
Wed, 23 Oct 2002 04:02:23 +0000 (04:02 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 23 Oct 2002 04:02:23 +0000 (04:02 +0000)
webcit/calendar.c

index 549836a60e9bede7170cbda743512f401cf99665..e86e3067ea14957a1f8103ade7c6531cfad16a53 100644 (file)
@@ -481,12 +481,17 @@ void save_individual_task(icalcomponent *supplied_vtodo, long msgnum) {
                        serv_puts("");
                        serv_puts(icalcomponent_as_ical_string(vtodo));
                        serv_puts("000");
+
+                       /* Probably not necessary; the server will see the UID
+                        * of the object and delete the old one anyway, but
+                        * just in case...
+                        */
                        delete_existing = 1;
                }
        }
 
        /*
-        * If the user clicked 'Delete' then delete it, period.
+        * If the user clicked 'Delete' then explicitly delete the message.
         */
        if (!strcasecmp(bstr("sc"), "Delete")) {
                delete_existing = 1;