]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Fix bad redirection when adding a new user
authorJeremy Benoist <jeremy.benoist@gmail.com>
Thu, 21 Jan 2016 15:36:30 +0000 (16:36 +0100)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Thu, 21 Jan 2016 15:36:30 +0000 (16:36 +0100)
src/Wallabag/CoreBundle/Controller/ConfigController.php

index d0cf91defc159336a55fc4b2fdeee7e311c1727d..6c375909c9ee7e810f1d5bb3e8ef4696175ef443 100644 (file)
@@ -125,7 +125,7 @@ class ConfigController extends Controller
         $newUser->setEnabled(true);
         $newUserForm = $this->createForm(NewUserType::class, $newUser, array(
             'validation_groups' => array('Profile'),
-            'action' => $this->generateUrl('config').'#set5',
+            'action' => $this->generateUrl('config').'#set6',
         ));
         $newUserForm->handleRequest($request);