diff --git a/app/Models/Entry.php b/app/Models/Entry.php index 14eacbe78..75d8da12c 100644 --- a/app/Models/Entry.php +++ b/app/Models/Entry.php @@ -87,9 +87,11 @@ class FreshRSS_Entry extends Minz_Model { public function date($raw = false) { if ($raw) { return $this->date; - } else { - return timestamptodate($this->date); } + return timestamptodate($this->date); + } + public function machineReadableDate() { + return @date (DATE_ATOM, $this->date); } public function dateAdded($raw = false, $microsecond = false) { if ($raw) { diff --git a/app/views/helpers/index/normal/entry_bottom.phtml b/app/views/helpers/index/normal/entry_bottom.phtml index fa2b8f036..1c1a1c8f1 100644 --- a/app/views/helpers/index/normal/entry_bottom.phtml +++ b/app/views/helpers/index/normal/entry_bottom.phtml @@ -107,7 +107,7 @@