diff options
author | Evan Prodromou <evan@status.net> | 2009-12-28 17:51:04 -0800 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-12-28 17:51:04 -0800 |
commit | 45c4078ca9de2f8f107e3c4a7cb759ac9cb2664a (patch) | |
tree | c65cc4d53536cff5b079d5af66553e9f2ba13024 | |
parent | 1e3fea17afb5d8291e87f1fc57022af4e2633611 (diff) |
notices are immutable, use created date for updated
-rw-r--r-- | classes/Notice.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index 7651d8bd5..0bb3b861c 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -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); |