From: Raphaƫl Gertz Date: Tue, 23 Feb 2021 23:09:43 +0000 (+0100) Subject: Rename title in civility X-Git-Tag: 0.1.6~4 X-Git-Url: https://git.rapsys.eu/userbundle/commitdiff_plain/7f2857ef914109ec1a4561aea3156e6ae8424922 Rename title in civility --- 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) {