Local favoriting fills out content to saveActivity

This commit is contained in:
Mikael Nordfeldth 2014-07-14 13:59:50 +02:00
parent ae62b91940
commit b0c4a35940
1 changed files with 5 additions and 0 deletions

View File

@ -85,6 +85,11 @@ class FavorAction extends FormAction
$act->verb = ActivityVerb::FAVORITE;
$act->title = ActivityUtils::verbToTitle($act->verb);
$act->time = strtotime($now);
// TRANS: Notification given when a user marks a notice as favorite.
// TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
$act->content = sprintf(_('%1$s marked notice %2$s as a favorite.'),
$this->scoped->getBestName(), $this->target->getUrl());
$stored = Notice::saveActivity($act, $this->scoped,
array('uri'=>$act->id));