Index: chatroom.theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/chatroom/chatroom.theme.inc,v
retrieving revision 1.3.2.39
diff -u -r1.3.2.39 chatroom.theme.inc
--- chatroom.theme.inc	13 Dec 2009 14:26:08 -0000	1.3.2.39
+++ chatroom.theme.inc	7 Feb 2010 21:56:10 -0000
@@ -327,7 +327,6 @@
   global $user;
   
   $output = '<style type="text/css">#chatroom-board-container { width: ' . variable_get('chatroom_message_board_width', '100%') . ';}</style>';
-  $output .= theme('chatroom_user_list', $node->chat->users, $node);
   $output .= '<div id="chatroom-board-container">';
   $output .= '<div id="chatroom-board">';
   foreach ($node->chat->latest_messages as $message) {
@@ -335,6 +334,7 @@
   }
   $output .= '</div></div>';
   $output .= theme('chatroom_buttons', $node);
+  $output .= theme('chatroom_user_list', $node->chat->users, $node);
   if ($node->uid == $user->uid || user_access('administer chats')) {
     $output .= drupal_get_form('chatroom_chat_management_form', $node);
   }
