From: Art Cancro Date: Sun, 20 Sep 2009 03:26:07 +0000 (+0000) Subject: * Use wDumpContent() instead of end_burst() where appropriate X-Git-Tag: v7.86~844 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=e2f37ceb57dfceb0e207171842669e4dd6a46e5f * Use wDumpContent() instead of end_burst() where appropriate --- diff --git a/webcit/notes.c b/webcit/notes.c index fe75c32b5..13e03723a 100644 --- a/webcit/notes.c +++ b/webcit/notes.c @@ -433,7 +433,7 @@ int notes_GetParamsGetServerCall(SharedMessageStatus *Stat, int notes_Cleanup(void **ViewSpecific) { - end_burst(); + wDumpContent(1); return 0; } diff --git a/webcit/tasks.c b/webcit/tasks.c index fecdb67cf..c2f4b8278 100644 --- a/webcit/tasks.c +++ b/webcit/tasks.c @@ -653,7 +653,7 @@ int tasks_GetParamsGetServerCall(SharedMessageStatus *Stat, int tasks_Cleanup(void **ViewSpecific) { - end_burst(); + wDumpContent(1); /* Tasks doesn't need the calview struct... free (*ViewSpecific); *ViewSpecific = NULL; diff --git a/webcit/vcard_edit.c b/webcit/vcard_edit.c index 248881d11..2897424b0 100644 --- a/webcit/vcard_edit.c +++ b/webcit/vcard_edit.c @@ -1318,7 +1318,7 @@ int vcard_Cleanup(void **ViewSpecific) vcardview_struct *VS; VS = (vcardview_struct*) *ViewSpecific; - end_burst(); + wDumpContent(1); if ((VS != NULL) && (VS->addrbook != NULL)) free(VS->addrbook);