From c5f59d252db8ad98d10d0f121348f2d4a1aa073c Mon Sep 17 00:00:00 2001 From: Andrew Pamment Date: Tue, 30 Oct 2018 14:11:47 +1000 Subject: [PATCH] add missing Subject text on message view in web --- src/www_msgs.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/www_msgs.c b/src/www_msgs.c index 8778594..344dbba 100644 --- a/src/www_msgs.c +++ b/src/www_msgs.c @@ -705,7 +705,10 @@ char *www_msgs_messageview(struct user_record *user, int conference, int area, i child_child_tag = www_tag_new("br", NULL); www_tag_add_child(child_tag, child_child_tag); - + + child_child_tag = www_tag_new(NULL, "Subject : "); + www_tag_add_child(child_tag, child_child_tag); + child_child_tag = www_tag_new("input", NULL); www_tag_add_attrib(child_child_tag, "type", "text"); www_tag_add_attrib(child_child_tag, "name", "subject");