1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

Clean the tagging rule creation form

This commit is contained in:
Kévin Gomez 2015-11-16 14:01:43 +01:00
parent 69edb774eb
commit c13eda461f
2 changed files with 3 additions and 3 deletions

View file

@ -102,7 +102,7 @@ class ConfigController extends Controller
// handle tagging rule
$taggingRule = new TaggingRule();
$newTaggingRule = $this->createForm(new TaggingRuleType(), $taggingRule);
$newTaggingRule = $this->createForm(new TaggingRuleType(), $taggingRule, array('action' => $this->generateUrl('config').'#set5'));
$newTaggingRule->handleRequest($request);
if ($newTaggingRule->isValid()) {