aboutsummaryrefslogtreecommitdiffstats
path: root/include/chat.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-02-02 03:43:52 -0800
committerfriendica <info@friendica.com>2014-02-02 03:43:52 -0800
commite83419b53e27078867f8449f476d87b064b9d502 (patch)
treed02cdea385de99975d27c43ca555e57942ba2ee5 /include/chat.php
parent6b15e57cdbb1b525528f1e67aaa071d0ef4e6e25 (diff)
downloadvolse-hubzilla-e83419b53e27078867f8449f476d87b064b9d502.tar.gz
volse-hubzilla-e83419b53e27078867f8449f476d87b064b9d502.tar.bz2
volse-hubzilla-e83419b53e27078867f8449f476d87b064b9d502.zip
add links to change chat status and leave room
Diffstat (limited to 'include/chat.php')
-rw-r--r--include/chat.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/chat.php b/include/chat.php
index 08fd154b5..5af3a3a9a 100644
--- a/include/chat.php
+++ b/include/chat.php
@@ -122,10 +122,10 @@ function chatroom_enter($observer_xchan,$room_id,$status,$client) {
intval($room_id)
);
if($r) {
- q("update chatpresence set cp_status = %d and cp_last = '%s' where cp_id = %d limit 1",
- dbesc($status),
+ q("update chatpresence set cp_last = '%s' where cp_id = %d and cp_client = '%s' limit 1",
dbesc(datetime_convert()),
- intval($r[0]['cp_id'])
+ intval($r[0]['cp_id']),
+ dbesc($client)
);
return true;
}
@@ -145,6 +145,7 @@ function chatroom_enter($observer_xchan,$room_id,$status,$client) {
function chatroom_leave($observer_xchan,$room_id,$client) {
if(! $room_id || ! $observer_xchan)
return;
+
$r = q("select * from chatpresence where cp_xchan = '%s' and cp_room = %d and cp_client = '%s' limit 1",
dbesc($observer_xchan),
intval($room_id),
@@ -155,6 +156,7 @@ function chatroom_leave($observer_xchan,$room_id,$client) {
intval($r[0]['cp_id'])
);
}
+
return true;
}