aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller
diff options
context:
space:
mode:
authorKévin Gomez <contact@kevingomez.fr>2015-11-16 14:01:43 +0100
committerKévin Gomez <contact@kevingomez.fr>2015-11-16 14:01:43 +0100
commitc13eda461f88ba16c88d7c398322a59b294e6c97 (patch)
treea4b75114ce760e2fe8fef57a5a7b20467deca85f /src/Wallabag/CoreBundle/Controller
parent69edb774eb360ea33646fcc81cd4ea71fa137680 (diff)
downloadwallabag-c13eda461f88ba16c88d7c398322a59b294e6c97.tar.gz
wallabag-c13eda461f88ba16c88d7c398322a59b294e6c97.tar.zst
wallabag-c13eda461f88ba16c88d7c398322a59b294e6c97.zip
Clean the tagging rule creation form
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller')
-rw-r--r--src/Wallabag/CoreBundle/Controller/ConfigController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/ConfigController.php b/src/Wallabag/CoreBundle/Controller/ConfigController.php
index de1536c9..7a187710 100644
--- a/src/Wallabag/CoreBundle/Controller/ConfigController.php
+++ b/src/Wallabag/CoreBundle/Controller/ConfigController.php
@@ -102,7 +102,7 @@ class ConfigController extends Controller
102 102
103 // handle tagging rule 103 // handle tagging rule
104 $taggingRule = new TaggingRule(); 104 $taggingRule = new TaggingRule();
105 $newTaggingRule = $this->createForm(new TaggingRuleType(), $taggingRule); 105 $newTaggingRule = $this->createForm(new TaggingRuleType(), $taggingRule, array('action' => $this->generateUrl('config').'#set5'));
106 $newTaggingRule->handleRequest($request); 106 $newTaggingRule->handleRequest($request);
107 107
108 if ($newTaggingRule->isValid()) { 108 if ($newTaggingRule->isValid()) {