sign_me_up icon indicating copy to clipboard operation
sign_me_up copied to clipboard

is this still under development, registration seems broken

Open abshkd opened this issue 13 years ago • 2 comments

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.

abshkd avatar Oct 16 '12 22:10 abshkd

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

abshkd avatar Oct 17 '12 01:10 abshkd

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.

abshkd avatar Oct 17 '12 01:10 abshkd