aboutsummaryrefslogtreecommitdiff
path: root/app/models/Entry.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-12-02 20:12:55 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-12-02 20:12:55 +0100
commit56b269cef6bc54fa8d8fc69ff0f0e8b2ffb36afb (patch)
tree6870c446f15b997d1c9b15b8d232eadce1a78508 /app/models/Entry.php
parentee6a1bdde381a4ac95d8c7393deda3ebbaae1ead (diff)
PHP : suppression autres alertes
Voir https://github.com/marienfressinaud/FreshRSS/issues/310
Diffstat (limited to 'app/models/Entry.php')
-rwxr-xr-xapp/models/Entry.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/Entry.php b/app/models/Entry.php
index 196823f67..899e98b00 100755
--- a/app/models/Entry.php
+++ b/app/models/Entry.php
@@ -137,7 +137,7 @@ class Entry extends Model {
public function isDay ($day) {
$date = $this->dateAdded(true);
- $today = strtotime('today');
+ $today = @strtotime('today');
$yesterday = $today - 86400;
if ($day === Days::TODAY &&