X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Factivity.php;h=9282461c1ccce4a29ef3c769191fcd3d426d32c2;hb=d6b28c64830f632bb2f4b6f3c9369b9e56ad217a;hp=6b3ccf3519dd496b98b95dafe6107eeea1772bb5;hpb=200721a2f45dbfa5463ba32165c7f60e517f0622;p=quix0rs-gnu-social.git diff --git a/lib/activity.php b/lib/activity.php index 6b3ccf3519..9282461c1c 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -245,7 +245,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]); } @@ -580,8 +580,8 @@ class Activity if (!empty($this->link)) { $xs->element('link', array('rel' => 'alternate', - 'type' => 'text/html'), - $this->link); + 'type' => 'text/html', + 'href' => $this->link)); } }