From: Mikael Nordfeldth Date: Thu, 31 Dec 2015 01:37:42 +0000 (+0100) Subject: Wups, $notice not $stored in the old function... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=df19791a8f6b028721b5e014e49445610dff28dd;p=quix0rs-gnu-social.git Wups, $notice not $stored in the old function... --- diff --git a/classes/Notice.php b/classes/Notice.php index ca12340736..43ffa0833f 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -685,7 +685,7 @@ class Notice extends Managed_DataObject // Only save 'attention' and metadata stuff (URLs, tags...) stuff if // the activityverb is a POST (since stuff like repeat, favorite etc. // reasonably handle notifications themselves. - if (ActivityUtils::compareVerbs($stored->verb, array(ActivityVerb::POST))) { + if (ActivityUtils::compareVerbs($notice->verb, array(ActivityVerb::POST))) { if (isset($replies)) { $notice->saveKnownReplies($replies); } else {