diff options
author | friendica <info@friendica.com> | 2013-09-10 19:06:06 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-10 19:06:06 -0700 |
commit | 3e5414cf35f3781297490e058c6d366bca45748e (patch) | |
tree | 3b317e302652df514c3fe7f1471c14932b1b67db /mod/like.php | |
parent | 7ada499ca9a1424a59204d87edb5856f88a79b59 (diff) | |
download | volse-hubzilla-3e5414cf35f3781297490e058c6d366bca45748e.tar.gz volse-hubzilla-3e5414cf35f3781297490e058c6d366bca45748e.tar.bz2 volse-hubzilla-3e5414cf35f3781297490e058c6d366bca45748e.zip |
provide detailed error to remote site for the myriad of things that can go wrong inside item_store(), !! this changes the return of item_store !!
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; |