From: Evan Prodromou Date: Mon, 13 Sep 2010 20:27:02 +0000 (-0400) Subject: bugs in function calls in Notice::asActivity X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9f4891568f458a8135d59820b47b91e3f89ab93b;p=quix0rs-gnu-social.git bugs in function calls in Notice::asActivity --- diff --git a/classes/Notice.php b/classes/Notice.php index 9a6f180e56..0539ca3b1d 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -1218,16 +1218,16 @@ class Notice extends Memcached_DataObject $act = new Activity(); - $act->actor = Activity::fromProfile($profile); + $act->actor = ActivityObject::fromProfile($profile); $act->verb = ActivityVerb::POST; $act->objects[] = ActivityObject::fromNotice($this); $act->time = strtotime($this->created); $act->link = $this->bestUrl(); - $act->content = common_xml_safe_string($this->rendered); + $act->content = common_xml_safe_str($this->rendered); $act->id = $this->uri; - $act->title = common_xml_safe_string($this->content); + $act->title = common_xml_safe_str($this->content); $ctx = new ActivityContext();