From: Evan Prodromou Date: Sun, 9 Jun 2013 01:12:29 +0000 (-0400) Subject: Pass null to Profile::profileInfo() X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bb0cf686dfaab97bdc2637f7931624674ffbd9b8;p=quix0rs-gnu-social.git Pass null to Profile::profileInfo() --- diff --git a/classes/Message.php b/classes/Message.php index d19d3f3c80..7fe626ec57 100644 --- a/classes/Message.php +++ b/classes/Message.php @@ -187,7 +187,7 @@ class Message extends Managed_DataObject } $act->actor = ActivityObject::fromProfile($profile); - $act->actor->extra[] = $profile->profileInfo(); + $act->actor->extra[] = $profile->profileInfo(null); $act->verb = ActivityVerb::POST;