diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-09-01 22:27:00 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-09-01 22:27:00 -0700 |
commit | 23213a91eddd8ae6ca04a1e345153e9740ecd5e4 (patch) | |
tree | 8cca1f55305cf99f66a2d18abeacb35182b7f564 /include/identity.php | |
parent | 6cc60ba477c1634b2ba6d78495d35cbf306988e1 (diff) | |
parent | 184c544a24144baecf986f3b5627c55e520d0b4a (diff) | |
download | volse-hubzilla-23213a91eddd8ae6ca04a1e345153e9740ecd5e4.tar.gz volse-hubzilla-23213a91eddd8ae6ca04a1e345153e9740ecd5e4.tar.bz2 volse-hubzilla-23213a91eddd8ae6ca04a1e345153e9740ecd5e4.zip |
Merge https://github.com/redmatrix/redmatrix into pending_merge
Diffstat (limited to 'include/identity.php')
-rw-r--r-- | include/identity.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/identity.php b/include/identity.php index 1bea5d790..115baddc1 100644 --- a/include/identity.php +++ b/include/identity.php @@ -566,6 +566,13 @@ function identity_basic_export($channel_id, $items = false) { if($r) $ret['obj'] = $r; + + $r = q("select * from app where app_channel = %d", + intval($channel_id) + ); + if($r) + $ret['app'] = $r; + if(! $items) return $ret; |