From: Wilfried Göesgens Date: Wed, 2 Sep 2009 11:53:21 +0000 (+0000) Subject: * the json view shouldn't call begin/endburst itself, its done by readloop. X-Git-Tag: v7.86~895 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=0ec5fe16bdd0dc4c7426b0097adf1377d0841c03 * the json view shouldn't call begin/endburst itself, its done by readloop. --- diff --git a/webcit/msg_renderers.c b/webcit/msg_renderers.c index 55411e228..2ff94b66a 100644 --- a/webcit/msg_renderers.c +++ b/webcit/msg_renderers.c @@ -1209,10 +1209,8 @@ readloop_struct rlid[] = { /* Spit out the new summary view. This is basically a static page, so clients can cache the layout, all the dirty work is javascript :) */ void new_summary_view(void) { - begin_burst(); DoTemplate(HKEY("msg_listview"),NULL,&NoCtx); DoTemplate(HKEY("trailing"),NULL,&NoCtx); - end_burst(); }