diff --git a/Web/RSSReader/rss.15m.php b/Web/RSSReader/rss.15m.php index 2b009b65e..c4ac3ae0c 100755 --- a/Web/RSSReader/rss.15m.php +++ b/Web/RSSReader/rss.15m.php @@ -80,6 +80,12 @@ public function load($url) $this->loadLogData(); $feed_data = @file_get_contents(FEED_URL); + + if ($feed_data === '') { + $this->title = 'No new items at this time.'; + return; + } + $this->feed = new DOMDocument(); $this->feed->loadXML($feed_data);