aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/TagController.php
diff options
context:
space:
mode:
authorKevin Decherf <kevin@kdecherf.com>2017-05-21 16:35:06 +0200
committerKevin Decherf <kevin@kdecherf.com>2017-05-31 00:36:46 +0200
commit5dbf3f2326c4054782304b9a41d773a1100acf48 (patch)
tree5a13f5e02a2cb72a90d90f1074a2651c88057348 /src/Wallabag/CoreBundle/Controller/TagController.php
parent2150576d86709968faec3ed7b8cdc576c0200ae2 (diff)
downloadwallabag-5dbf3f2326c4054782304b9a41d773a1100acf48.tar.gz
wallabag-5dbf3f2326c4054782304b9a41d773a1100acf48.tar.zst
wallabag-5dbf3f2326c4054782304b9a41d773a1100acf48.zip
TagController: ignore ActionMarkAsRead when removing tag from entry
Fixes #2835 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
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 fb6a720b..736eb1dc 100644
--- a/src/Wallabag/CoreBundle/Controller/TagController.php
+++ b/src/Wallabag/CoreBundle/Controller/TagController.php
@@ -70,7 +70,7 @@ class TagController extends Controller
70 $em->flush(); 70 $em->flush();
71 } 71 }
72 72
73 $redirectUrl = $this->get('wallabag_core.helper.redirect')->to($request->headers->get('referer')); 73 $redirectUrl = $this->get('wallabag_core.helper.redirect')->to($request->headers->get('referer'), '', true);
74 74
75 return $this->redirect($redirectUrl); 75 return $this->redirect($redirectUrl);
76 } 76 }