aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/EntryController.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2015-09-23 07:55:55 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2015-09-23 07:55:55 +0200
commitd4ebe5c5dcf581416ab76136908cafbde78f63bf (patch)
tree0e0638166e8b734e17b9eb9a4c86d9008ed7be3d /src/Wallabag/CoreBundle/Controller/EntryController.php
parent0d3bafdfdfe4fa1e4aa62f6056d8028ebd7d920d (diff)
downloadwallabag-d4ebe5c5dcf581416ab76136908cafbde78f63bf.tar.gz
wallabag-d4ebe5c5dcf581416ab76136908cafbde78f63bf.tar.zst
wallabag-d4ebe5c5dcf581416ab76136908cafbde78f63bf.zip
Entries filter on language
+ updated deps
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller/EntryController.php')
-rw-r--r--src/Wallabag/CoreBundle/Controller/EntryController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/EntryController.php b/src/Wallabag/CoreBundle/Controller/EntryController.php
index b9e4e67e..a9f35c36 100644
--- a/src/Wallabag/CoreBundle/Controller/EntryController.php
+++ b/src/Wallabag/CoreBundle/Controller/EntryController.php
@@ -192,7 +192,7 @@ class EntryController extends Controller
192 throw new \InvalidArgumentException(sprintf('Type "%s" is not implemented.', $type)); 192 throw new \InvalidArgumentException(sprintf('Type "%s" is not implemented.', $type));
193 } 193 }
194 194
195 $form = $this->get('form.factory')->create(new EntryFilterType()); 195 $form = $this->get('form.factory')->create(new EntryFilterType($repository, $this->getUser()));
196 196
197 if ($request->query->has($form->getName())) { 197 if ($request->query->has($form->getName())) {
198 // manually bind values from the request 198 // manually bind values from the request