[UPDATE] delete cookies on login
This commit is contained in:
parent
477ed0884d
commit
4527d4793d
@ -192,6 +192,11 @@ class User extends Base {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if ($this->checkUserPassword($username, $password)) {
|
if ($this->checkUserPassword($username, $password)) {
|
||||||
|
// delete notification cookies
|
||||||
|
setcookie("motd-box", "", time()-3600);
|
||||||
|
setcookie("lastlogin-box", "", time()-3600);
|
||||||
|
setcookie("backend-box", "", time()-3600);
|
||||||
|
// rest of login process
|
||||||
$uid = $this->getUserId($username);
|
$uid = $this->getUserId($username);
|
||||||
$lastLoginTime = $this->getLastLogin($uid);
|
$lastLoginTime = $this->getLastLogin($uid);
|
||||||
$this->updateLoginTimestamp($uid);
|
$this->updateLoginTimestamp($uid);
|
||||||
|
|||||||
@ -23,7 +23,6 @@ $(document).ready(function() {
|
|||||||
// Bootstrap iOS style switches for checkboxes with switch class
|
// Bootstrap iOS style switches for checkboxes with switch class
|
||||||
$('.switch').bootstrapSwitch();
|
$('.switch').bootstrapSwitch();
|
||||||
|
|
||||||
|
|
||||||
if (document.getElementById("motd")) {
|
if (document.getElementById("motd")) {
|
||||||
var md5motd = $.md5(document.getElementById('motd').innerHTML);
|
var md5motd = $.md5(document.getElementById('motd').innerHTML);
|
||||||
// Check if MOTD alert has been closed
|
// Check if MOTD alert has been closed
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user