From 3cec5cb867911c4f5c8e9f9ccfd80244a091952c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20M=C3=BCller?= Date: Sun, 11 May 2014 15:27:04 +0200 Subject: [PATCH] password --- app/Controller/RegistrationController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Controller/RegistrationController.php b/app/Controller/RegistrationController.php index 0f7e98d..8f3f19f 100644 --- a/app/Controller/RegistrationController.php +++ b/app/Controller/RegistrationController.php @@ -185,6 +185,7 @@ class RegistrationController extends AppController { if (!$send and $this->request->is('post')) { if ($this->request->data['User']['password1'] == $this->request->data['User']['password2']) { $password = $this->MiconwareSession->create_hash($this->request->data['User']['password1']); + var_dump($password); $result = $this->User->replace_password($try,$password); if ($result) { $this->MiconwareSession->setFlash(__('dreamjob.password_replace.done'), 'flash', array('alert' => 'success'));