diff options
Diffstat (limited to 'mod/like.php')
-rwxr-xr-x | mod/like.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/like.php b/mod/like.php index 13b56ec98..7ee9c3cb0 100755 --- a/mod/like.php +++ b/mod/like.php @@ -106,7 +106,7 @@ function like_content(&$a) { $r = q("SELECT * FROM `item` WHERE `verb` = '%s' AND `deleted` = 0 - AND `contact-id` = %d AND ( `parent` = '%s' OR `parent_uri` = '%s' OR `thr-parent` = '%s') LIMIT 1", + AND `contact-id` = %d AND ( `parent` = '%s' OR `parent_uri` = '%s' OR `thr_parent` = '%s') LIMIT 1", dbesc($activity), intval($contact['id']), dbesc($item_id), @@ -129,8 +129,8 @@ function like_content(&$a) { $uri = item_new_uri($a->get_hostname(),$owner_uid); - $post_type = (($item['resource-id']) ? t('photo') : t('status')); - $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE ); + $post_type = (($item['resource_id']) ? t('photo') : t('status')); + $objtype = (($item['resource_id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE ); $link = xmlify('<link rel="alternate" type="text/html" href="' . $a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . '" />' . "\n") ; $body = $item['body']; @@ -164,7 +164,7 @@ EOT; $arr['gravity'] = GRAVITY_LIKE; $arr['parent'] = $item['id']; $arr['parent_uri'] = $item['uri']; - $arr['thr-parent'] = $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']; |