aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/TagController.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-05-02 21:32:47 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-05-02 21:32:47 +0200
commit2a007fe43d937043c2c41b011f98652bd6e138a7 (patch)
tree298b57a87da662306505adac14c5b15a81190fe2 /src/Wallabag/CoreBundle/Controller/TagController.php
parentba9fee085597932f451741b47ad7013e7eb4323b (diff)
downloadwallabag-2a007fe43d937043c2c41b011f98652bd6e138a7.tar.gz
wallabag-2a007fe43d937043c2c41b011f98652bd6e138a7.tar.zst
wallabag-2a007fe43d937043c2c41b011f98652bd6e138a7.zip
Fix tags listing
Fix #1994 * Remove unused method in tag repository
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller/TagController.php')
-rw-r--r--src/Wallabag/CoreBundle/Controller/TagController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/TagController.php b/src/Wallabag/CoreBundle/Controller/TagController.php
index 16d14d79..8645fb44 100644
--- a/src/Wallabag/CoreBundle/Controller/TagController.php
+++ b/src/Wallabag/CoreBundle/Controller/TagController.php
@@ -81,7 +81,7 @@ class TagController extends Controller
81 { 81 {
82 $tags = $this->getDoctrine() 82 $tags = $this->getDoctrine()
83 ->getRepository('WallabagCoreBundle:Tag') 83 ->getRepository('WallabagCoreBundle:Tag')
84 ->findTags($this->getUser()->getId()); 84 ->findAllTags($this->getUser()->getId());
85 85
86 return $this->render( 86 return $this->render(
87 'WallabagCoreBundle:Tag:tags.html.twig', 87 'WallabagCoreBundle:Tag:tags.html.twig',