From 9e4c8ba1d0926e41409cfe6c584215a90c952600 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sat, 26 Feb 2022 16:42:40 -0500 Subject: [PATCH] some comments --- webcit-ng/forum_view.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webcit-ng/forum_view.c b/webcit-ng/forum_view.c index 80320ec84..aa8296f19 100644 --- a/webcit-ng/forum_view.c +++ b/webcit-ng/forum_view.c @@ -1,4 +1,5 @@ -// Forum view (threaded/flat) +// The code in here feeds messages out as JSON to the client browser. It is currently being used +// for the forum view, but as we implement other views we'll probably reuse a lot of what's here. // // Copyright (c) 1996-2022 by the citadel.org team // @@ -78,7 +79,7 @@ void json_render_one_message(struct http_transaction *h, struct ctdlsession *c, JsonObjectAppend(j, NewJsonPlainString(HKEY("from"), author, -1)); } else { - JsonObjectAppend(j, NewJsonPlainString(HKEY("from"), emailaddr, -1)); // FIXME do the compound address string + JsonObjectAppend(j, NewJsonPlainString(HKEY("from"), emailaddr, -1)); // FIXME do compound address string } if (!strcmp(buf, "text")) { -- 2.39.2