aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Starred.php
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-07-01 06:36:25 -0400
committerAndrew Manning <tamanning@zoho.com>2016-07-01 06:36:25 -0400
commit0630609d6e60085f20d1430fd4044775dd9af5e9 (patch)
tree2556d3a10cf6328dbed962060888f74584b791db /Zotlabs/Module/Starred.php
parent205924ff294e5c0d9c57ed9a36dc899fcdd9c460 (diff)
parent7371e0862543922b65eac920e128ca4ef1348b13 (diff)
downloadvolse-hubzilla-0630609d6e60085f20d1430fd4044775dd9af5e9.tar.gz
volse-hubzilla-0630609d6e60085f20d1430fd4044775dd9af5e9.tar.bz2
volse-hubzilla-0630609d6e60085f20d1430fd4044775dd9af5e9.zip
Merge remote-tracking branch 'upstream/dev' into wiki
Diffstat (limited to 'Zotlabs/Module/Starred.php')
-rw-r--r--Zotlabs/Module/Starred.php15
1 files changed, 14 insertions, 1 deletions
diff --git a/Zotlabs/Module/Starred.php b/Zotlabs/Module/Starred.php
index 73a2dc808..4f1d99ec6 100644
--- a/Zotlabs/Module/Starred.php
+++ b/Zotlabs/Module/Starred.php
@@ -30,7 +30,20 @@ class Starred extends \Zotlabs\Web\Controller {
intval(local_channel()),
intval($message_id)
);
-
+
+ $r = q("select * from item where id = %d",
+ intval($message_id)
+ );
+ if($r) {
+ xchan_query($r);
+ $sync_item = fetch_post_tags($r);
+ build_sync_packet(local_channel(),[
+ 'item' => [
+ encode_item($sync_item[0],true)
+ ]
+ ]);
+ }
+
header('Content-type: application/json');
echo json_encode(array('result' => $item_starred));
killme();