summaryrefslogtreecommitdiff
path: root/app/models/Feed.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-09-12 22:41:09 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-09-12 22:41:09 +0200
commit7627970862e03a9061ddced3423689e9dccd6f45 (patch)
tree2c18f481c218b3443ee172581fcaf3a5b2676b5c /app/models/Feed.php
parente15b7fd6ec5ae770ce232b2a0cea7b281254d96e (diff)
Corrected bug with the default "No Category"
The SQL optimisation patch had introduced a bug with "No Category", now solved
Diffstat (limited to 'app/models/Feed.php')
-rw-r--r--app/models/Feed.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/models/Feed.php b/app/models/Feed.php
index e9e21f06a..2a93be757 100644
--- a/app/models/Feed.php
+++ b/app/models/Feed.php
@@ -502,6 +502,9 @@ class HelperFeed {
}
foreach ($listDAO as $key => $dao) {
+ if (empty ($dao['url'])) {
+ continue;
+ }
if (isset ($dao['id'])) {
$key = $dao['id'];
}