From: rabuzarus <> Date: Thu, 8 Oct 2015 18:26:11 +0000 (+0200) Subject: small bugfix in like.php X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6a9ec1487829003f77079ec7efcf7df1d41445ce;p=friendica.git small bugfix in like.php --- diff --git a/mod/like.php b/mod/like.php index 4f6d6cd6d7..90782687d3 100755 --- a/mod/like.php +++ b/mod/like.php @@ -166,7 +166,7 @@ function like_content(&$a) { $uri = item_new_uri($a->get_hostname(),$owner_uid); $post_type = (($item['resource-id']) ? t('photo') : t('status')); - if($item['resource-type'] === 'event') + if($item['obj_type'] === ACTIVITY_OBJ_EVENT) $post_type = t('event'); $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE ); $link = xmlify('' . "\n") ;