export apps

This commit is contained in:
redmatrix 2015-09-01 22:26:21 -07:00
parent f72a3113f5
commit 184c544a24

View File

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