diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-05-30 21:45:11 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-05-30 21:45:11 -0400 |
commit | 4ec1c333073fd693147ff34895cf7e3664f83cf6 (patch) | |
tree | 513b7ec6548372e797ca3a05714290660ed71216 /actions | |
parent | f134ba68ab6a7e9f94579d2a4e1f02eca2a7ebc0 (diff) |
correct last-modified date for shownotice.php
Diffstat (limited to 'actions')
-rw-r--r-- | actions/shownotice.php | 2 |
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); } |