Summary:
{$url_changesettings} in logout form redirect to logout form
Detailed Description:
Hi Robert,
when I click on changesettings url in the logout form, the page come back to the
logout form.
In FrontEndUsers.module.php, around the line 560, the action parameter is
initialized to 'logout' :
if( $action == 'default' ) {
$form = \cge_param::get_string($params,'form','login');
if( $uid = $this->LoggedInId() ) $form = 'logout';
switch( $form ) {
case 'login':
case 'forgotpw':
case 'silent':
case 'changesettings':
case 'lostusername':
$action = $form;
break;
case 'logout':
$action = 'logoutform';
break;
It seems that it comes from this line :
if( $uid = $this->LoggedInId() ) $form = 'logout';
regards