summaryrefslogtreecommitdiffstats
path: root/opmlparser.php
diff options
context:
space:
mode:
Diffstat (limited to 'opmlparser.php')
-rw-r--r--opmlparser.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/opmlparser.php b/opmlparser.php
index 280a07a83..e6646c2f9 100644
--- a/opmlparser.php
+++ b/opmlparser.php
@@ -60,7 +60,7 @@ class OPMLParser {
else {
$name = (string)$rawcollection['text'];
$children = self::parseFolder($rawcollection, $count);
- $collection = new OC_News_Folder($name);
+ $collection = new OCA\News\Folder($name);
$collection->addChildren($children);
}
if ($collection !== null) {
@@ -74,7 +74,7 @@ class OPMLParser {
$url = (string)$rawfeed['xmlUrl'];
$title = (string)$rawfeed['title'];
- $feed = new OC_News_Feed($url, $title);
+ $feed = new OCA\News\Feed($url, $title);
return $feed;
}