summaryrefslogtreecommitdiffstats
path: root/subscribe.php
diff options
context:
space:
mode:
Diffstat (limited to 'subscribe.php')
-rw-r--r--subscribe.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/subscribe.php b/subscribe.php
index 175dcdf5e..d51f233d1 100644
--- a/subscribe.php
+++ b/subscribe.php
@@ -20,7 +20,7 @@
$l = OC_L10N::get('news');
if ($feedid === null) {
- $feed = OCA\News\Utils::fetch($feedurl);
+ $feed = OCA\News\Utils::slimFetch($feedurl);
if ($feed !== null) {
$feedid = $feedmapper->save($feed, 0); //adds in the root folder
@@ -29,7 +29,7 @@
if($feed === null || !$feedid) {
echo $l->t('An error occurred');
} else {
- echo $l->t('Nice! You have subcribed to ') . $feed->getTitle() . '.';
+ echo $l->t('Nice! You have subscribed to ') . $feed->getTitle() . '.';
}
}
else {