Index: chatroom.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/chatroom/chatroom.module,v
retrieving revision 1.65
diff -u -r1.65 chatroom.module
--- chatroom.module	15 Sep 2009 08:44:10 -0000	1.65
+++ chatroom.module	28 Oct 2009 09:14:10 -0000
@@ -891,6 +891,7 @@
     SELECT
       s.uid,
       u.name,
+			u.picture,
       col.guest_id
     FROM {chatroom_online_list} col
     JOIN {sessions} s ON s.sid = col.sid
Index: chatroom.theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/chatroom/chatroom.theme.inc,v
retrieving revision 1.3
diff -u -r1.3 chatroom.theme.inc
--- chatroom.theme.inc	13 Sep 2009 16:06:59 -0000	1.3
+++ chatroom.theme.inc	28 Oct 2009 09:14:27 -0000
@@ -179,7 +179,7 @@
 function theme_chatroom_user_list($users) {
   if (!empty($users)) {
     foreach ($users as $user) {
-      $items[] = theme('username', $user);
+			$items[] = theme('user_picture', $user). theme('username', $user);
     }
   }
   $output = theme('item_list', $items);

