aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-12-14 09:00:14 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-12-15 22:22:57 +0100
commit5a5da36955a00a4c07100c81c443d195a4dd01a2 (patch)
treebc215aede9b5eb84ca8c22b195b3be3edb90aff4 /src/Wallabag/CoreBundle/Controller
parent9deac0c597d10283ac720a57484a78ff960fc138 (diff)
downloadwallabag-5a5da36955a00a4c07100c81c443d195a4dd01a2.tar.gz
wallabag-5a5da36955a00a4c07100c81c443d195a4dd01a2.tar.zst
wallabag-5a5da36955a00a4c07100c81c443d195a4dd01a2.zip
Removed outputWalkers for RSS and API
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller')
-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 2290386f..92f18707 100644
--- a/src/Wallabag/CoreBundle/Controller/RssController.php
+++ b/src/Wallabag/CoreBundle/Controller/RssController.php
@@ -85,7 +85,7 @@ class RssController extends Controller
85 throw new \InvalidArgumentException(sprintf('Type "%s" is not implemented.', $type)); 85 throw new \InvalidArgumentException(sprintf('Type "%s" is not implemented.', $type));
86 } 86 }
87 87
88 $pagerAdapter = new DoctrineORMAdapter($qb->getQuery()); 88 $pagerAdapter = new DoctrineORMAdapter($qb->getQuery(), true, false);
89 $entries = new Pagerfanta($pagerAdapter); 89 $entries = new Pagerfanta($pagerAdapter);
90 90
91 $perPage = $user->getConfig()->getRssLimit() ?: $this->getParameter('wallabag_core.rss_limit'); 91 $perPage = $user->getConfig()->getRssLimit() ?: $this->getParameter('wallabag_core.rss_limit');