diff options
author | friendica <info@friendica.com> | 2012-06-23 05:46:15 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-23 05:46:15 -0700 |
commit | 22ca358a8c01144c8172b5108514d85906f1ff7d (patch) | |
tree | b4b8549c8bb1daaa09a09fd7404677111eea34a9 /mod | |
parent | 7614d35cadb274a48434a61cdab205ca120462a3 (diff) | |
download | volse-hubzilla-22ca358a8c01144c8172b5108514d85906f1ff7d.tar.gz volse-hubzilla-22ca358a8c01144c8172b5108514d85906f1ff7d.tar.bz2 volse-hubzilla-22ca358a8c01144c8172b5108514d85906f1ff7d.zip |
like comments
Diffstat (limited to 'mod')
-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 942a04fe7..642e948fd 100755 --- a/mod/like.php +++ b/mod/like.php @@ -37,7 +37,7 @@ function like_content(&$a) { logger('like: verb ' . $verb . ' item ' . $item_id); - $r = q("SELECT * FROM `item` WHERE ( `id` = '%s' OR `uri` = '%s') AND `id` = `parent` LIMIT 1", + $r = q("SELECT * FROM `item` WHERE `id` = '%s' OR `uri` = '%s' LIMIT 1", dbesc($item_id), dbesc($item_id) ); @@ -217,6 +217,7 @@ EOT; $arr['gravity'] = GRAVITY_LIKE; $arr['parent'] = $item['id']; $arr['parent-uri'] = $item['uri']; + $arr['thr-parent'] = $item['uri']; $arr['owner-name'] = $remote_owner['name']; $arr['owner-link'] = $remote_owner['url']; $arr['owner-avatar'] = $remote_owner['thumb']; |