X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FController%2FTagController.php;fp=src%2FWallabag%2FCoreBundle%2FController%2FTagController.php;h=f7b78f5d3bea3354726ccc5ad3fc491f7dd764db;hb=a19caf8a37dfd59a4e270507ec08e9fc259e3e1e;hp=c228c27a9f8c1018bdbef3f3c03e190d1154ce8e;hpb=39133eb796996701228501f898b4ef33af8e0fdb;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Controller/TagController.php b/src/Wallabag/CoreBundle/Controller/TagController.php index c228c27a..f7b78f5d 100644 --- a/src/Wallabag/CoreBundle/Controller/TagController.php +++ b/src/Wallabag/CoreBundle/Controller/TagController.php @@ -151,7 +151,10 @@ class TagController extends Controller $form = $this->createForm(RenameTagType::class, new Tag()); $form->handleRequest($request); - if ($form->isSubmitted() && $form->isValid()) { + if ($form->isSubmitted() + && $form->isValid() + && $form->get('label')->getData() !== $tag->getLabel() + ) { $newTagLabel = $form->get('label')->getData(); $newTag = new Tag(); $newTag->setLabel($newTagLabel); @@ -171,12 +174,12 @@ class TagController extends Controller $em = $this->getDoctrine()->getManager(); $em->flush(); - } - $this->get('session')->getFlashBag()->add( - 'notice', - 'flashes.tag.notice.tag_renamed' - ); + $this->get('session')->getFlashBag()->add( + 'notice', + 'flashes.tag.notice.tag_renamed' + ); + } $redirectUrl = $this->get('wallabag_core.helper.redirect')->to($request->headers->get('referer'), '', true);