aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-05-21 20:52:18 -0700
committerfriendica <info@friendica.com>2013-05-21 20:52:18 -0700
commitc64c79eb119726e359bb4b47d1e30340d96f983d (patch)
tree5209eb0fc84c6f68daedf1fc3496efb5585f661f /include/items.php
parentd72d30fabb3e081e0b2c749e512bb3989d9d1f4a (diff)
downloadvolse-hubzilla-c64c79eb119726e359bb4b47d1e30340d96f983d.tar.gz
volse-hubzilla-c64c79eb119726e359bb4b47d1e30340d96f983d.tar.bz2
volse-hubzilla-c64c79eb119726e359bb4b47d1e30340d96f983d.zip
fix app display
Diffstat (limited to 'include/items.php')
-rwxr-xr-xinclude/items.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php
index 2a85556df..dbd493724 100755
--- a/include/items.php
+++ b/include/items.php
@@ -135,7 +135,11 @@ function post_activity_item($arr) {
call_hooks('post_local_end', $arr);
proc_run('php','include/notifier.php','activity',$post_id);
$ret['success'] = true;
- $ret['activity'] = $ret;
+ $r = q("select * from item where id = %d limit 1",
+ intval($post_id)
+ );
+ if($r)
+ $ret['activity'] = $r[0];
}
return $ret;