From: Mikael Nordfeldth Date: Fri, 13 Feb 2015 10:39:50 +0000 (+0100) Subject: UAS protected property user solved with getUser() X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=cdf2b288548df43b1b8e0c67375c8c01b94e129c;p=quix0rs-gnu-social.git UAS protected property user solved with getUser() --- diff --git a/plugins/DirectMessage/DirectMessagePlugin.php b/plugins/DirectMessage/DirectMessagePlugin.php index f24c043065..6be9fb5083 100644 --- a/plugins/DirectMessage/DirectMessagePlugin.php +++ b/plugins/DirectMessage/DirectMessagePlugin.php @@ -58,16 +58,16 @@ class DirectMessagePlugin extends Plugin public function onAppendUserActivityStreamObjects(UserActivityStream $uas, array &$objs) { // Messages _from_ the user - $msgMap = Message::listGet('from_profile', array($this->user->id)); - $messages = $msgMap[$uas->user->id]; + $msgMap = Message::listGet('from_profile', array($uas->getUser()->id)); + $messages = $msgMap[$uas->getUser()->id]; if (!empty($uas->after)) { $messages = array_filter($messages, array($uas, 'createdAfter')); } $objs[] = $messages; // Messages _to_ the user - $msgMap = Message::listGet('to_profile', array($this->user->id)); - $messages = $msgMap[$uas->user->id]; + $msgMap = Message::listGet('to_profile', array($uas->getUser()->id)); + $messages = $msgMap[$uas->getUser()->id]; if (!empty($uas->after)) { $messages = array_filter($messages, array($uas, 'createdAfter')); }