Merge pull request #389 from fermionic/diaspora-likes-on-comments

make likes on comments work with Diaspora, fix some small bugs
This commit is contained in:
friendica 2012-07-12 22:52:00 -07:00
commit f30b694ae4
3 changed files with 47 additions and 29 deletions

View file

@ -106,11 +106,12 @@ 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') 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),
dbesc($item_id)
dbesc($item_id),
dbesc($item['uri'])
);
if(count($r)) {
$like_item = $r[0];