add missing Subject text on message view in web

This commit is contained in:
Andrew Pamment 2018-10-30 14:11:47 +10:00
parent 463b77ba8b
commit c5f59d252d
1 changed files with 4 additions and 1 deletions

View File

@ -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");