You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description of the problem
When a member submits the member registration form, the operation results in a redirect. The user is provided with no information about the outcome of the registration process.
How To Reproduce
Ensure that the legacy templates are enabled, or forum addon is installed and enabled.
Steps to reproduce the behavior:
Fill the member registration form.
The home page of the site is loaded after the form is submitted.
Error Messages
There is no error message. The redirect is confusing to the user.
Screenshots / Videos / Template Code
Environment Details:
Version: 7.5.9
PHP Version 8.x
MySQL Version 8.x
OS: Linux
Web Server: Apache
Possible Solution
Line 651 in mod.member_register.php in "member" addon.
Current: return ee()->functions->redirect($return_link);
Fixed: ee()->output->show_message($data);
Additional context
NA
The text was updated successfully, but these errors were encountered:
@intoeetive The lines above the point where it returns, it configured $data variable (see below) but never uses it. So, one would wonder why the $data is configured but not used right before the method returns. Also, it is not clear what the developer of the site can do to show a message to the user to go see their email and activate the registration. There is no way to provide return parameter when the forum templates are being used - the registration form's "form" tag is created in the EE member module and not in the templates in system/user path.
Uh oh!
There was an error while loading. Please reload this page.
Description of the problem
When a member submits the member registration form, the operation results in a redirect. The user is provided with no information about the outcome of the registration process.
How To Reproduce
Error Messages
There is no error message. The redirect is confusing to the user.
Screenshots / Videos / Template Code
Environment Details:
Possible Solution
Line 651 in mod.member_register.php in "member" addon.
Current: return ee()->functions->redirect($return_link);
Fixed: ee()->output->show_message($data);
Additional context
NA
The text was updated successfully, but these errors were encountered: