diff options
Diffstat (limited to 'mod/like.php')
-rwxr-xr-x | mod/like.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/like.php b/mod/like.php index 0de65f129..84b0a6592 100755 --- a/mod/like.php +++ b/mod/like.php @@ -171,7 +171,8 @@ function like_content(&$a) { $arr['deny_cid'] = $item['deny_cid']; $arr['deny_gid'] = $item['deny_gid']; - $post_id = item_store($arr); + $post = item_store($arr); + $post_id = $post['item_id']; $arr['id'] = $post_id; |