]> git.mxchange.org Git - friendica.git/commitdiff
small bugfix in like.php
authorrabuzarus <>
Thu, 8 Oct 2015 18:26:11 +0000 (20:26 +0200)
committerrabuzarus <>
Thu, 8 Oct 2015 18:26:11 +0000 (20:26 +0200)
mod/like.php

index 4f6d6cd6d776833b760203705ba2f543a1824743..90782687d3dc5669501fe1065ccc015cab6c7f34 100755 (executable)
@@ -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('<link rel="alternate" type="text/html" href="' . $a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . '" />' . "\n") ;