is this still under development, registration seems broken
Hi, I just updated to cake 2.3 I am not sure before or after the update the registration no longer works. What happens is that form is submitted but I come back to the form with no error whatsoever even if the entries were bad or good, regardless.
the register() function uses $this->data which seems to be always null.
all your forms are broken right now.
i believe this line is in effect , $this->data = $this->requestHandler->data(null); Therefore data is always null. when i do a debug on the UsersController the $this->data is intact.
thanks
temporary workaround, not sure if its correct.
$this->data = $this->controller->request->data;
Edit: new_password.ctp is also broken as $password is undefined. It also seems that HTML format cannot be set. it's always on text. So i set up text emails and then I get this issue.