X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Factivity.php;h=3128088ca21b45772ff844e60ce98cc14378888d;hb=77951647cef2b025f4c5731c00713a455d20498d;hp=2d3930df0d85ec46207e6ff63fa9790556f3f664;hpb=343291262e2835e590625584b08610b4eb718fd7;p=quix0rs-gnu-social.git diff --git a/lib/activity.php b/lib/activity.php index 2d3930df0d..3128088ca2 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -244,7 +244,7 @@ class Activity if (!empty($targetEl)) { $this->target = new ActivityObject($targetEl); - } elseif (ActivityUtils::compareTypes($this->verb, array(ActivityVerb::FAVORITE))) { + } elseif (ActivityUtils::compareVerbs($this->verb, array(ActivityVerb::FAVORITE))) { // StatusNet didn't send a 'target' for their Favorite atom entries $this->target = clone($this->objects[0]); } @@ -579,8 +579,8 @@ class Activity if (!empty($this->link)) { $xs->element('link', array('rel' => 'alternate', - 'type' => 'text/html'), - $this->link); + 'type' => 'text/html', + 'href' => $this->link)); } }