]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
correct last-modified date for shownotice.php
authorEvan Prodromou <evan@controlyourself.ca>
Sun, 31 May 2009 01:45:11 +0000 (21:45 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Sun, 31 May 2009 01:45:11 +0000 (21:45 -0400)
actions/shownotice.php

index 2c469c9deec69c88a546de8b239007614d6a142c..1be1e2414c9cc0d10986c3f89985af07a47d674d 100644 (file)
@@ -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);
     }