From: hannes Date: Sun, 22 Nov 2015 20:26:08 +0000 (+0000) Subject: ActivityVerb::SHARE instead of http://activitystrea.ms/schema/1.0/share X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1eba33590bfb86ecab627de7176d0096e88b28e0;p=quix0rs-gnu-social.git ActivityVerb::SHARE instead of http://activitystrea.ms/schema/1.0/share --- diff --git a/classes/Profile.php b/classes/Profile.php index 55961bfc9a..2ed48c2b45 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -1244,7 +1244,7 @@ class Profile extends Managed_DataObject $notice = Notice::pkeyGet(array('profile_id' => $this->id, 'repeat_of' => $notice->id, - 'verb' => 'http://activitystrea.ms/schema/1.0/share')); + 'verb' => ActivityVerb::SHARE)); return !empty($notice); }