summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-09-13 16:22:27 -0400
committerEvan Prodromou <evan@status.net>2010-09-13 16:22:27 -0400
commit4338bc1ee71c79a6ae55e30157e9bba078acca5d (patch)
treeae3aa7f44f010888f8e5a39f398df242fea90e23 /classes
parentd634f9cf17f683c38150d64d29b47975b5aeac70 (diff)
bug in time and object handling in Fave::asActivity
Diffstat (limited to 'classes')
-rw-r--r--classes/Fave.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/classes/Fave.php b/classes/Fave.php
index 9d0b0aa02..f21f1b529 100644
--- a/classes/Fave.php
+++ b/classes/Fave.php
@@ -141,16 +141,16 @@ class Fave extends Memcached_DataObject
$act->id = TagURI::mint('favor:%d:%d:%s',
$profile->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->content = sprintf(_("%s marked notice %s as a favorite."),
$profile->getBestName(),
$notice->uri);
- $act->actor = ActivityObject::fromProfile($profile);
- $act->object = ActivityObject::fromNotice($notice);
+ $act->actor = ActivityObject::fromProfile($profile);
+ $act->objects[] = ActivityObject::fromNotice($notice);
return $act;
}