mirror of
https://github.com/wallabag/wallabag.git
synced 2025-07-22 17:18:37 +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));
|
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);
|
$entries = new Pagerfanta($pagerAdapter);
|
||||||
|
|
||||||
$perPage = $user->getConfig()->getRssLimit() ?: $this->getParameter('wallabag_core.rss_limit');
|
$perPage = $user->getConfig()->getRssLimit() ?: $this->getParameter('wallabag_core.rss_limit');
|
||||||
|
|
|
@ -171,7 +171,7 @@ class EntryRepository extends EntityRepository
|
||||||
$qb->orderBy('e.updatedAt', $order);
|
$qb->orderBy('e.updatedAt', $order);
|
||||||
}
|
}
|
||||||
|
|
||||||
$pagerAdapter = new DoctrineORMAdapter($qb);
|
$pagerAdapter = new DoctrineORMAdapter($qb, true, false);
|
||||||
|
|
||||||
return new Pagerfanta($pagerAdapter);
|
return new Pagerfanta($pagerAdapter);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue