From: Evan Prodromou Date: Mon, 19 Sep 2011 20:11:43 +0000 (-0400) Subject: fixup bad class constant in Notice X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a28a6d2f72043fc180c186f3ac70c4c554af4369;p=quix0rs-gnu-social.git fixup bad class constant in Notice --- diff --git a/classes/Notice.php b/classes/Notice.php index ce6464c157..adcc25973c 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -507,7 +507,7 @@ class Notice extends Managed_DataObject if (empty($verb)) { if (!empty($notice->repeat_of)) { $notice->verb = ActivityVerb::SHARE; - $notice->object_type = ActivityVerb::ACTIVITY; + $notice->object_type = ActivityObject::ACTIVITY; } else { $notice->verb = ActivityVerb::POST; }