]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
ActivityVerb::SHARE instead of http://activitystrea.ms/schema/1.0/share
authorhannes <h@nnesmannerhe.im>
Sun, 22 Nov 2015 20:26:08 +0000 (20:26 +0000)
committerhannes <h@nnesmannerhe.im>
Sun, 22 Nov 2015 20:26:08 +0000 (20:26 +0000)
classes/Profile.php

index 55961bfc9abc448717b453de2403ca3c23069cc3..2ed48c2b4564f3b32f43337c62fd3c482226bb4d 100644 (file)
@@ -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);
     }