diff options
| author | 2013-07-26 18:26:52 +0200 | |
|---|---|---|
| committer | 2013-07-26 18:26:52 +0200 | |
| commit | 7b26767114582956ed284dffcf1c51574c48322e (patch) | |
| tree | 573dfb517a1c82261aa09b8e00b0955e562c4938 /lib/lib_rss.php | |
| parent | e22ebc735f7436b03e3f40508b07a3f1eaeb0516 (diff) | |
Fix issue #112 : vérification catégorie par défaut
Lors d'une importation OPML, on vérifie la présence d'une catégorie par
défaut pour éviter les imports qui ne marchent pas
Diffstat (limited to 'lib/lib_rss.php')
| -rw-r--r-- | lib/lib_rss.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php index 772003089..a7a5244f8 100644 --- a/lib/lib_rss.php +++ b/lib/lib_rss.php @@ -69,6 +69,7 @@ function opml_import ($xml) { } $catDAO = new CategoryDAO(); + $catDAO->checkDefault(); $defCat = $catDAO->getDefault(); $categories = array (); |
