summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/feed.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/feed.php b/lib/feed.php
index 6b1409440..496faa224 100644
--- a/lib/feed.php
+++ b/lib/feed.php
@@ -20,10 +20,14 @@ class OC_News_Feed extends OC_News_Collection {
private $items; //array that contains all the items of the feed
private $favicon;
- public function __construct($url, $title, $items, $id = null) {
+ // if $items = null, it means that feed has not been fetched yet
+ // if $id = null, it means that the feed has not been stored in the db yet
+ public function __construct($url, $title, $items = null, $id = null) {
$this->url = $url;
$this->title = $title;
- $this->items = $items;
+ if ($items !== null) {
+ $this->items = $items;
+ }
if ($id !== null) {
parent::__construct($id);
}