1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 17:25:55 +00:00

move logout_user() to UserHelper

This commit is contained in:
Andrew Dolgov
2021-02-14 15:31:03 +03:00
parent 2547ece0ca
commit a8cc43a0ff
4 changed files with 15 additions and 14 deletions

View File

@@ -418,15 +418,4 @@ class Pref_Users extends Handler_Protected {
return $default;
}
static function logout_user() {
if (session_status() === PHP_SESSION_ACTIVE)
session_destroy();
if (isset($_COOKIE[session_name()])) {
setcookie(session_name(), '', time()-42000, '/');
}
session_commit();
}
}