mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
Removed outputWalkers for RSS and API
This commit is contained in:
parent
9deac0c597
commit
5a5da36955
2 changed files with 2 additions and 2 deletions
|
@ -85,7 +85,7 @@ class RssController extends Controller
|
|||
throw new \InvalidArgumentException(sprintf('Type "%s" is not implemented.', $type));
|
||||
}
|
||||
|
||||
$pagerAdapter = new DoctrineORMAdapter($qb->getQuery());
|
||||
$pagerAdapter = new DoctrineORMAdapter($qb->getQuery(), true, false);
|
||||
$entries = new Pagerfanta($pagerAdapter);
|
||||
|
||||
$perPage = $user->getConfig()->getRssLimit() ?: $this->getParameter('wallabag_core.rss_limit');
|
||||
|
|
|
@ -171,7 +171,7 @@ class EntryRepository extends EntityRepository
|
|||
$qb->orderBy('e.updatedAt', $order);
|
||||
}
|
||||
|
||||
$pagerAdapter = new DoctrineORMAdapter($qb);
|
||||
$pagerAdapter = new DoctrineORMAdapter($qb, true, false);
|
||||
|
||||
return new Pagerfanta($pagerAdapter);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue