notices are immutable, use created date for updated

This commit is contained in:
Evan Prodromou 2009-12-28 17:51:04 -08:00
parent 1e3fea17af
commit 45c4078ca9
1 changed files with 1 additions and 1 deletions

View File

@ -1139,7 +1139,7 @@ class Notice extends Memcached_DataObject
$xs->element('id', null, $this->uri);
$xs->element('published', null, common_date_w3dtf($this->created));
$xs->element('updated', null, common_date_w3dtf($this->modified));
$xs->element('updated', null, common_date_w3dtf($this->created));
if ($this->reply_to) {
$reply_notice = Notice::staticGet('id', $this->reply_to);