* the json view shouldn't call begin/endburst itself, its done by readloop.
authorWilfried Göesgens <willi@citadel.org>
Wed, 2 Sep 2009 11:53:21 +0000 (11:53 +0000)
committerWilfried Göesgens <willi@citadel.org>
Wed, 2 Sep 2009 11:53:21 +0000 (11:53 +0000)
webcit/msg_renderers.c

index 55411e22860ca66eab9acb336aa717a09b6a1822..2ff94b66a30b7c2aa397830b00812391a9f0292c 100644 (file)
@@ -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();
 }