From: Art Cancro Date: Thu, 22 Sep 2022 19:19:07 +0000 (-0400) Subject: Merge branch 'master' of ssh://git.citadel.org/var/www/gitroot/citadel X-Git-Tag: v959~42 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=fdef03022a466ce3dbaedf8ceef8d1683ae2dd73;hp=274c95e13b3868d29c4790a4603f27c0a04616aa;p=citadel.git Merge branch 'master' of ssh://git.citadel.org/var/www/gitroot/citadel --- diff --git a/webcit-ng/static/js/roomlist.js b/webcit-ng/static/js/roomlist.js index 229ad3443..18a84f44a 100644 --- a/webcit-ng/static/js/roomlist.js +++ b/webcit-ng/static/js/roomlist.js @@ -48,17 +48,25 @@ function display_room_list_renderer(floor_list, room_list) { for (var i in room_list) { if (room_list[i].current_view == views.VIEW_BBS) { output[room_list[i].floor] += - "
" - + "
" + + + "
" + + "\">" + escapeHTML(room_list[i].name) - + "" + + "
" + + + "
" // date/time of last post + string_timestamp(room_list[i].mtime) - + "
"; + + "" + + + "" // end container } }