From: Evan Prodromou Date: Sun, 31 May 2009 01:45:11 +0000 (-0400) Subject: correct last-modified date for shownotice.php X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4ec1c333073fd693147ff34895cf7e3664f83cf6;p=quix0rs-gnu-social.git correct last-modified date for shownotice.php --- diff --git a/actions/shownotice.php b/actions/shownotice.php index 2c469c9dee..1be1e2414c 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); }