Fix missing To on message view

This commit is contained in:
Andrew Pamment 2018-10-22 18:38:13 +10:00
parent fb09e38602
commit f0fa63cc5a

View File

@ -448,6 +448,9 @@ char *www_msgs_messageview(struct user_record *user, int conference, int area, i
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);