From 1eba33590bfb86ecab627de7176d0096e88b28e0 Mon Sep 17 00:00:00 2001 From: hannes Date: Sun, 22 Nov 2015 20:26:08 +0000 Subject: [PATCH] ActivityVerb::SHARE instead of http://activitystrea.ms/schema/1.0/share --- classes/Profile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }