minor fixes
This commit is contained in:
parent
03569f79b6
commit
5b176d9370
|
@ -100,6 +100,9 @@ class User
|
||||||
$this->loginTime = time();
|
$this->loginTime = time();
|
||||||
$this->errorLogin = false;
|
$this->errorLogin = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->saveLogin();
|
||||||
|
return $this->logged;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Maybe back from SAML login.
|
// Maybe back from SAML login.
|
||||||
|
@ -117,10 +120,10 @@ class User
|
||||||
'User cannot log in into this console, please contact administrator'
|
'User cannot log in into this console, please contact administrator'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
$this->saveLogin();
|
$this->saveLogin();
|
||||||
return $this->logged;
|
return $this->logged;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (($user == null) && ($password == null)) {
|
if (($user == null) && ($password == null)) {
|
||||||
|
|
Loading…
Reference in New Issue