Fix warning / send current user in to Notice::asActivity

This commit is contained in:
Zach Copley 2011-08-31 13:10:12 -07:00
parent c585a43d6f
commit 5f441842be
1 changed files with 2 additions and 1 deletions

View File

@ -374,7 +374,8 @@ class ActivityPlugin extends Plugin
if (!empty($fave)) {
$notice = Notice::staticGet('id', $fave->notice_id);
if (!empty($notice)) {
$target = $notice->asActivity();
$cur = common_current_user();
$target = $notice->asActivity($cur);
if ($target->verb == ActivityVerb::POST) {
// "I like the thing you posted"
$activity->objects = $target->objects;