From: Mikael Nordfeldth Date: Mon, 18 Apr 2016 13:56:52 +0000 (+0200) Subject: Use constant for ATTN_PUBLIC (public collection) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0959efd7be98df62fda4ef9ec3fc1e8de42c8464;p=quix0rs-gnu-social.git Use constant for ATTN_PUBLIC (public collection) --- diff --git a/classes/Notice.php b/classes/Notice.php index 6501a83adb..f38de37167 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -955,10 +955,10 @@ class Notice extends Managed_DataObject $act->context = new ActivityContext(); } - if (array_key_exists('http://activityschema.org/collection/public', $act->context->attention)) { + if (array_key_exists(ActivityContext::ATTN_PUBLIC, $act->context->attention)) { $stored->scope = Notice::PUBLIC_SCOPE; // TODO: maybe we should actually keep this? if the saveAttentions thing wants to use it... - unset($act->context->attention['http://activityschema.org/collection/public']); + unset($act->context->attention[ActivityContext::ATTN_PUBLIC]); } else { $stored->scope = self::figureOutScope($actor, $groups, $scope); }