diff --git a/classes/Notice.php b/classes/Notice.php index ed5a494f7e..1569590ba8 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -1508,8 +1508,9 @@ class Notice extends Managed_DataObject if (Event::handle('StartNoticeAsActivity', array($this, &$act))) { - $act->id = TagURI::mint("post:".$this->id); + $act->id = $this->uri; $act->time = strtotime($this->created); + $act->link = $this->bestUrl(); $act->content = common_xml_safe_str($this->rendered); $profile = $this->getProfile();