diff options
author | friendica <info@friendica.com> | 2012-08-15 22:33:37 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-08-15 22:33:37 -0700 |
commit | f7c6a6ff9071c120f5bd6efe51cdb934e0c30cc7 (patch) | |
tree | 586454a21f87a8f9a5e75073ac065cfbbae935a4 /mod/like.php | |
parent | 77b334efbce9eb9aef825b968a2c852da21bfe94 (diff) | |
download | volse-hubzilla-f7c6a6ff9071c120f5bd6efe51cdb934e0c30cc7.tar.gz volse-hubzilla-f7c6a6ff9071c120f5bd6efe51cdb934e0c30cc7.tar.bz2 volse-hubzilla-f7c6a6ff9071c120f5bd6efe51cdb934e0c30cc7.zip |
item table rename parent-uri, target-type, object-type (more to come later)
Diffstat (limited to 'mod/like.php')
-rwxr-xr-x | mod/like.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/like.php b/mod/like.php index 0ab516a16..13b56ec98 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), @@ -163,7 +163,7 @@ EOT; $arr['origin'] = 1; $arr['gravity'] = GRAVITY_LIKE; $arr['parent'] = $item['id']; - $arr['parent-uri'] = $item['uri']; + $arr['parent_uri'] = $item['uri']; $arr['thr-parent'] = $item['uri']; $arr['owner-name'] = $remote_owner['name']; $arr['owner-link'] = $remote_owner['url']; @@ -178,7 +178,7 @@ EOT; $arr['body'] = sprintf( $bodyverb, $ulink, $alink, $plink ); $arr['verb'] = $activity; - $arr['object-type'] = $objtype; + $arr['obj_type'] = $objtype; $arr['object'] = $obj; $arr['allow_cid'] = $item['allow_cid']; $arr['allow_gid'] = $item['allow_gid']; |