replace redirect call to fnc call return parameter

Cette révision appartient à :
Daniel Seifert 2022-11-04 08:38:08 +01:00
Parent 8aff5c8008
révision 51e97bae62
Signé par: DanielS
ID de la clé GPG: 8A7C4C6ED1915C6F
2 fichiers modifiés avec 2 ajouts et 4 suppressions

Voir le fichier

@ -125,10 +125,9 @@ class d3webauthnadminlogin extends AdminController
Registry::getLogger()->error($e->getDetailedErrorMessage(), ['UserId' => $userId]);
Registry::getLogger()->debug($e->getTraceAsString());
$user->logout();
$this->getUtils()->redirect('index.php?cl=login');
}
return null;
return 'login';
}
/**

Voir le fichier

@ -85,6 +85,7 @@ class d3webauthnlogin extends FrontendController
$webauthn = oxNew(Webauthn::class);
$publicKeyCredentialRequestOptions = $webauthn->getRequestOptions($userId);
$this->addTplParam('webauthn_publickey_login', $publicKeyCredentialRequestOptions);
$this->addTplParam('isAdmin', isAdmin());
} catch (WebauthnException $e) {
Registry::getSession()->setVariable(WebauthnConf::GLOBAL_SWITCH, true);
Registry::getLogger()->error($e->getDetailedErrorMessage(), ['UserId' => $userId]);
@ -92,8 +93,6 @@ class d3webauthnlogin extends FrontendController
Registry::getUtilsView()->addErrorToDisplay($e);
$this->getUtils()->redirect('index.php?cl=start');
}
$this->addTplParam('isAdmin', isAdmin());
}
/**