fixed handleAuthorization method in baseclass portal to prevent an authloop

pull/72/head
s0nder 2023-01-17 19:34:03 +01:00 committed by Mike Kershaw / Dragorn
parent 61fe61aa9d
commit 3754cff226
1 changed files with 8 additions and 8 deletions

View File

@ -81,12 +81,12 @@ abstract class Portal
*/
protected function handleAuthorization()
{
if (isset($this->request->target)) {
if ($this->isClientAuthorized($_SERVER['REMOTE_ADDR']) and isset($this->request->target)) {
$this->redirect();
} elseif (isset($this->request->target)) {
$this->authorizeClient($_SERVER['REMOTE_ADDR']);
$this->onSuccess();
$this->redirect();
} elseif ($this->isClientAuthorized($_SERVER['REMOTE_ADDR'])) {
$this->redirect();
} else {
$this->showError();
}