summaryrefslogtreecommitdiff
path: root/app/models/Feed.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/Feed.php
parentee6a1bdde381a4ac95d8c7393deda3ebbaae1ead (diff)
PHP : suppression autres alertes
Voir https://github.com/marienfressinaud/FreshRSS/issues/310
Diffstat (limited to 'app/models/Feed.php')
-rw-r--r--app/models/Feed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/Feed.php b/app/models/Feed.php
index c1d0379a9..555759c9a 100644
--- a/app/models/Feed.php
+++ b/app/models/Feed.php
@@ -265,7 +265,7 @@ class Feed extends Model {
$title = html_only_entity_decode (strip_tags ($item->get_title ()));
$author = $item->get_author ();
$link = $item->get_permalink ();
- $date = strtotime ($item->get_date ());
+ $date = @strtotime ($item->get_date ());
// gestion des tags (catégorie == tag)
$tags_tmp = $item->get_categories ();