LoginRegister
LoginRegister copied to clipboard
Please add "id+" in buildProfileForm
After hooking a checkbox field render (to conform to a bootstrap v4.3x checkbox component), I was wondering why it was working for the Register form but not the Profile form.
I then noticed the difference between them in their respective build*Form methods:
$inputfield->attr('name', 'profile_' . $inputfield->attr('name'));
vs
$inputfield->attr('id+name', 'register_' . $inputfield->attr('name'));
Kindly add the id+ in the Profile buildProfileForm. I'm sure it was just an unintended omission.
Thanks much.