]> code.citadel.org Git - citadel.git/blobdiff - webcit-ng/forum_view.c
Major change to the javascript forum view. We now wait for all messages to be loaded...
[citadel.git] / webcit-ng / forum_view.c
index f3a9b585391ce4117b585d2df579a2f779a9dbf4..c6aedbd1a1159fbd3a14bf49000c39f80d816e03 100644 (file)
@@ -1,4 +1,3 @@
-//
 // Forum view (threaded/flat)
 //
 // Copyright (c) 1996-2021 by the citadel.org team
 
 #include "webcit.h"
 
-struct mthread {
-       long msgnum;
-       time_t datetime;
-       int threadhash;
-       int refhashes[10];
-       char from[64];
-       int parent;
-};
-
-
 // Commands we need to send to Citadel Server before we begin rendering forum view.
 // These are common to flat and threaded views.
 void setup_for_forum_view(struct ctdlsession *c) {