From: Brion Vibber Date: Wed, 24 Feb 2010 17:36:31 +0000 (+0000) Subject: Include with actor ID and name in Activity::asString(); fixes Salmon signatu... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=5cabb63e4eaf7cd3642bf7a0c4beb3fef2e1ba07;p=quix0rs-gnu-social.git Include with actor ID and name in Activity::asString(); fixes Salmon signature on OStatus unsub pings --- diff --git a/lib/activity.php b/lib/activity.php index 5cbab8d5f3..fa4ae02748 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -957,11 +957,24 @@ class Activity } // XXX: add context - // XXX: add target + $xs->elementStart('author'); + $xs->element('uri', array(), $this->actor->id); + if ($this->actor->title) { + $xs->element('name', array(), $this->actor->title); + } + $xs->elementEnd('author'); $xs->raw($this->actor->asString('activity:actor')); + $xs->element('activity:verb', null, $this->verb); - $xs->raw($this->object->asString()); + + if ($this->object) { + $xs->raw($this->object->asString()); + } + + if ($this->target) { + $xs->raw($this->target->asString('activity:target')); + } $xs->elementEnd('entry');