make likes on comments work with Diaspora, some small bugs

This commit is contained in:
Zach Prezkuta 2012-07-12 18:53:51 -06:00
commit f92338d79b
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];