summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--subscribe.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/subscribe.php b/subscribe.php
index 2b38d2ddf..41f00e98e 100644
--- a/subscribe.php
+++ b/subscribe.php
@@ -27,13 +27,13 @@
}
if($feed === null || !$feedid) {
- echo $l->t('An error occurred');
+ p($l->t('An error occurred'));
} else {
- echo $l->t('Nice! You have subscribed to ') . $feed->getTitle();
+ p($l->t('Nice! You have subscribed to ')) . $feed->getTitle();
}
}
else {
- echo $l->t('You had already subscribed to this feed!');
+ p($l->t('You had already subscribed to this feed!'));
}
?>