aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/TagController.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2017-06-01 09:29:16 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2017-06-01 09:29:18 +0200
commit53da8ad844b379ab9d82f2497cc5de91da9a1388 (patch)
treeb7964b0893025cd4b1cf41f661fccbb62e6424be /src/Wallabag/CoreBundle/Controller/TagController.php
parent2a0eec07a5630401a9ceb7add65604f79238f10c (diff)
downloadwallabag-53da8ad844b379ab9d82f2497cc5de91da9a1388.tar.gz
wallabag-53da8ad844b379ab9d82f2497cc5de91da9a1388.tar.zst
wallabag-53da8ad844b379ab9d82f2497cc5de91da9a1388.zip
Page parameter was never used in the function
It could have been used if we set the current page inside PreparePagerForEntries. But we did that in each controller because we can have an OutOfRangeCurrentPageException
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller/TagController.php')
-rw-r--r--src/Wallabag/CoreBundle/Controller/TagController.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/TagController.php b/src/Wallabag/CoreBundle/Controller/TagController.php
index 736eb1dc..9422bae4 100644
--- a/src/Wallabag/CoreBundle/Controller/TagController.php
+++ b/src/Wallabag/CoreBundle/Controller/TagController.php
@@ -125,8 +125,7 @@ class TagController extends Controller
125 125
126 $pagerAdapter = new ArrayAdapter($entriesByTag); 126 $pagerAdapter = new ArrayAdapter($entriesByTag);
127 127
128 $entries = $this->get('wallabag_core.helper.prepare_pager_for_entries') 128 $entries = $this->get('wallabag_core.helper.prepare_pager_for_entries')->prepare($pagerAdapter);
129 ->prepare($pagerAdapter, $page);
130 129
131 try { 130 try {
132 $entries->setCurrentPage($page); 131 $entries->setCurrentPage($page);