aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/RssController.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-09-30 09:38:08 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-09-30 09:38:08 +0200
commit2ff9991a1dfac0d3463662b96f529aac70c66f76 (patch)
tree51074ab8e0305b786c422577948fb8116368d138 /src/Wallabag/CoreBundle/Controller/RssController.php
parentfb479be3a0af95bba45c13b11e1f85bb9c753d25 (diff)
downloadwallabag-2ff9991a1dfac0d3463662b96f529aac70c66f76.tar.gz
wallabag-2ff9991a1dfac0d3463662b96f529aac70c66f76.tar.zst
wallabag-2ff9991a1dfac0d3463662b96f529aac70c66f76.zip
Removed duplicated templates files
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller/RssController.php')
-rw-r--r--src/Wallabag/CoreBundle/Controller/RssController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/RssController.php b/src/Wallabag/CoreBundle/Controller/RssController.php
index 2118885c..38e3b5a0 100644
--- a/src/Wallabag/CoreBundle/Controller/RssController.php
+++ b/src/Wallabag/CoreBundle/Controller/RssController.php
@@ -87,7 +87,7 @@ class RssController extends Controller
87 $perPage = $user->getConfig()->getRssLimit() ?: $this->getParameter('wallabag_core.rss_limit'); 87 $perPage = $user->getConfig()->getRssLimit() ?: $this->getParameter('wallabag_core.rss_limit');
88 $entries->setMaxPerPage($perPage); 88 $entries->setMaxPerPage($perPage);
89 89
90 return $this->render('WallabagCoreBundle:Entry:entries.xml.twig', [ 90 return $this->render('@WallabagCore/themes/common/Entry/entries.xml.twig', [
91 'type' => $type, 91 'type' => $type,
92 'entries' => $entries, 92 'entries' => $entries,
93 ]); 93 ]);