X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/ff832b7380916c7d63401978ca6b39bd2a35ef39..7f2857ef914109ec1a4561aea3156e6ae8424922:/Controller/DefaultController.php diff --git a/Controller/DefaultController.php b/Controller/DefaultController.php index 41009f8..bd53b1a 100644 --- a/Controller/DefaultController.php +++ b/Controller/DefaultController.php @@ -505,8 +505,8 @@ class DefaultController extends AbstractController { //Create the RegisterType form and give the proper parameters $form = $this->createForm($this->config['register']['view']['form'], null, array( - 'class_title' => $this->config['class']['title'], - 'title' => $doctrine->getRepository($this->config['class']['title'])->findOneByTitle($this->config['default']['title']), + 'class_civility' => $this->config['class']['civility'], + 'civility' => $doctrine->getRepository($this->config['class']['civility'])->findOneByTitle($this->config['default']['civility']), //Set action to register route name and context 'action' => $this->generateUrl($this->config['route']['register']['name'], $this->config['route']['register']['context']), 'method' => 'POST' @@ -581,7 +581,7 @@ class DefaultController extends AbstractController { $user->setPhone($data['phone']); $user->setPassword($encoder->encodePassword($user, $data['password'])); $user->setActive(true); - $user->setTitle($data['title']); + $user->setCivility($data['civility']); //Iterate on default group foreach($this->config['default']['group'] as $i => $groupTitle) {