aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-05-03 10:07:34 +0200
committerJeremy Benoist <j0k3r@users.noreply.github.com>2016-05-03 10:07:34 +0200
commit97c8eb3c2398d0aaf06155de5e0828e4020cb5d4 (patch)
tree44504734b0e5522d8d320e1ea06236080b6ef983 /src/Wallabag/CoreBundle/Controller
parent2142c714ef997f4853b5649ab86d150e40e6f18a (diff)
parente9023a16eba20655965b658ce4dbb2229dfe2546 (diff)
downloadwallabag-97c8eb3c2398d0aaf06155de5e0828e4020cb5d4.tar.gz
wallabag-97c8eb3c2398d0aaf06155de5e0828e4020cb5d4.tar.zst
wallabag-97c8eb3c2398d0aaf06155de5e0828e4020cb5d4.zip
Merge pull request #2013 from wallabag/fix-display-all-tags
Fix tags listing
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller')
-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',