diff options
Diffstat (limited to 'mod/chatsvc.php')
-rw-r--r-- | mod/chatsvc.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/mod/chatsvc.php b/mod/chatsvc.php index f32ea56ce..0a69834f0 100644 --- a/mod/chatsvc.php +++ b/mod/chatsvc.php @@ -85,7 +85,17 @@ function chatsvc_content(&$a) { ); if($r) { foreach($r as $rr) { - $inroom[] = array('img' => zid($rr['xchan_photo_m']), 'img_type' => $rr['xchan_photo_mimetype'],'name' => $rr['xchan_name']); + switch($rr['cp_status']) { + case 'away': + $status = t('Away'); + break; + case 'online': + default: + $status = t('Online'); + break; + } + + $inroom[] = array('img' => zid($rr['xchan_photo_m']), 'img_type' => $rr['xchan_photo_mimetype'],'name' => $rr['xchan_name'], status => $status); } } |