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

View File

@ -706,6 +706,9 @@ char *www_msgs_messageview(struct user_record *user, int conference, int area, i
child_child_tag = www_tag_new("br", NULL); child_child_tag = www_tag_new("br", NULL);
www_tag_add_child(child_tag, child_child_tag); 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); child_child_tag = www_tag_new("input", NULL);
www_tag_add_attrib(child_child_tag, "type", "text"); www_tag_add_attrib(child_child_tag, "type", "text");
www_tag_add_attrib(child_child_tag, "name", "subject"); www_tag_add_attrib(child_child_tag, "name", "subject");