bug in time and object handling in Fave::asActivity
This commit is contained in:
parent
d634f9cf17
commit
4338bc1ee7
@ -141,16 +141,16 @@ class Fave extends Memcached_DataObject
|
|||||||
$act->id = TagURI::mint('favor:%d:%d:%s',
|
$act->id = TagURI::mint('favor:%d:%d:%s',
|
||||||
$profile->id,
|
$profile->id,
|
||||||
$notice->id,
|
$notice->id,
|
||||||
common_date_iso8601($this->created));
|
common_date_iso8601($this->modified));
|
||||||
|
|
||||||
$act->time = $this->created;
|
$act->time = strtotime($this->modified);
|
||||||
$act->title = _("Favor");
|
$act->title = _("Favor");
|
||||||
$act->content = sprintf(_("%s marked notice %s as a favorite."),
|
$act->content = sprintf(_("%s marked notice %s as a favorite."),
|
||||||
$profile->getBestName(),
|
$profile->getBestName(),
|
||||||
$notice->uri);
|
$notice->uri);
|
||||||
|
|
||||||
$act->actor = ActivityObject::fromProfile($profile);
|
$act->actor = ActivityObject::fromProfile($profile);
|
||||||
$act->object = ActivityObject::fromNotice($notice);
|
$act->objects[] = ActivityObject::fromNotice($notice);
|
||||||
|
|
||||||
return $act;
|
return $act;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user