X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Flike.php;h=e997e05d6b0e43601d6924dd1bf23ebec532915c;hb=8039ad0e2318c28a22f87c31dbbdb3165f1ef058;hp=118ec81ca1c35e47ca966c997c254a2a379234d1;hpb=7886de5c393591eaf4e05f2a496a4f40060cb262;p=friendica.git diff --git a/include/like.php b/include/like.php index 118ec81ca1..e997e05d6b 100644 --- a/include/like.php +++ b/include/like.php @@ -57,7 +57,7 @@ function do_like($item_id, $verb) { dbesc($item_id) ); - if(! $item_id || (! count($r))) { + if(! $item_id || (! dbm::is_result($r))) { logger('like: no item ' . $item_id); return false; } @@ -78,7 +78,7 @@ function do_like($item_id, $verb) { intval($item['contact-id']), intval($item['uid']) ); - if(! count($r)) + if(! dbm::is_result($r)) return false; if(! $r[0]['self']) $remote_owner = $r[0]; @@ -90,7 +90,7 @@ function do_like($item_id, $verb) { WHERE `contact`.`self` = 1 AND `contact`.`uid` = %d LIMIT 1", intval($owner_uid) ); - if(count($r)) + if (dbm::is_result($r)) $owner = $r[0]; if(! $owner) { @@ -112,7 +112,7 @@ function do_like($item_id, $verb) { intval($_SESSION['visitor_id']), intval($owner_uid) ); - if(count($r)) + if (dbm::is_result($r)) $contact = $r[0]; } if(! $contact) { @@ -135,7 +135,7 @@ function do_like($item_id, $verb) { dbesc($item_id), dbesc($item_id), dbesc($item['uri']) ); - if(count($r)) { + if (dbm::is_result($r)) { $like_item = $r[0]; // Already voted, undo it @@ -163,7 +163,7 @@ function do_like($item_id, $verb) { $post_type = (($item['resource-id']) ? t('photo') : t('status')); if($item['object-type'] === ACTIVITY_OBJ_EVENT) $post_type = t('event'); - $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE ); + $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE ); $link = xmlify('' . "\n") ; $body = $item['body'];