]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Controller/TagController.php
Move Tags assigner to a separate file
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Controller / TagController.php
index 8a0932892d58567f94b3d46956be208d9d48a867..fb6a720b6e9d73d5b2608a505cf36a3a5836ed91 100644 (file)
@@ -28,7 +28,7 @@ class TagController extends Controller
         $form->handleRequest($request);
 
         if ($form->isSubmitted() && $form->isValid()) {
-            $this->get('wallabag_core.content_proxy')->assignTagsToEntry(
+            $this->get('wallabag_core.tags_assigner')->assignTagsToEntry(
                 $entry,
                 $form->get('label')->getData()
             );