a bit more ajax work on chat and chatsvc and some fiddling with layouts

This commit is contained in:
friendica
2014-01-30 01:00:46 -08:00
parent 080928f214
commit 6c6a9b963a
4 changed files with 29 additions and 13 deletions

View File

@@ -155,7 +155,7 @@ function chatroom_leave($observer_xchan,$room_id,$client) {
function chatroom_list($uid) {
$r = q("select cr_name, cr_id, count(cp_id) as cr_inroom from chatroom left join chatpresence on cr_id = cp_room where cr_uid = %d group by cp_id order by cr_name",
$r = q("select cr_name, cr_id, count(cp_id) as cr_inroom from chatroom left join chatpresence on cr_id = cp_room where cr_uid = %d group by cr_name order by cr_name",
intval($uid)
);