From f0fa63cc5a8b29af1884b68b1e462680cfe5d526 Mon Sep 17 00:00:00 2001 From: Andrew Pamment Date: Mon, 22 Oct 2018 18:38:13 +1000 Subject: [PATCH] Fix missing To on message view --- src/www_msgs.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/www_msgs.c b/src/www_msgs.c index 341edd8..ab21e22 100644 --- a/src/www_msgs.c +++ b/src/www_msgs.c @@ -447,6 +447,9 @@ char *www_msgs_messageview(struct user_record *user, int conference, int area, i child_tag = www_tag_new("div", NULL); www_tag_add_attrib(child_tag, "class", "msg-view-to"); www_tag_add_child(cur_tag, child_tag); + + child_child_tag = www_tag_new(NULL, "To : "); + www_tag_add_child(child_tag, child_child_tag); child_child_tag = www_tag_new(NULL, to); www_tag_add_child(child_tag, child_child_tag);