export chatrooms

This commit is contained in:
redmatrix 2015-09-03 18:43:44 -07:00
parent 2a7ff3018b
commit f7d9523c7d

View File

@ -577,6 +577,12 @@ function identity_basic_export($channel_id, $items = false) {
if($r)
$ret['app'] = $r;
$r = q("select * from chatroom where cr_uid = %d",
intval($channel_id)
);
if($r)
$ret['chatroom'] = $r;
if(! $items)
return $ret;