summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-05-30 21:45:11 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-05-30 21:45:11 -0400
commit4ec1c333073fd693147ff34895cf7e3664f83cf6 (patch)
tree513b7ec6548372e797ca3a05714290660ed71216
parentf134ba68ab6a7e9f94579d2a4e1f02eca2a7ebc0 (diff)
correct last-modified date for shownotice.php
-rw-r--r--actions/shownotice.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/shownotice.php b/actions/shownotice.php
index 2c469c9de..1be1e2414 100644
--- a/actions/shownotice.php
+++ b/actions/shownotice.php
@@ -122,7 +122,7 @@ class ShownoticeAction extends Action
function lastModified()
{
- return max(strtotime($this->notice->created),
+ return max(strtotime($this->notice->modified),
strtotime($this->profile->modified),
($this->avatar) ? strtotime($this->avatar->modified) : 0);
}