aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Repository/EntryRepository.php
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/Repository/EntryRepository.php
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/Repository/EntryRepository.php')
-rw-r--r--src/Wallabag/CoreBundle/Repository/EntryRepository.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Repository/EntryRepository.php b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
index c37a52c9..b9532fa2 100644
--- a/src/Wallabag/CoreBundle/Repository/EntryRepository.php
+++ b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
@@ -171,7 +171,7 @@ class EntryRepository extends EntityRepository
171 $qb->orderBy('e.updatedAt', $order); 171 $qb->orderBy('e.updatedAt', $order);
172 } 172 }
173 173
174 $pagerAdapter = new DoctrineORMAdapter($qb); 174 $pagerAdapter = new DoctrineORMAdapter($qb, true, false);
175 175
176 return new Pagerfanta($pagerAdapter); 176 return new Pagerfanta($pagerAdapter);
177 } 177 }