if empty session is autostarted because of a cookie, immediately destroy it

master
Andrew Dolgov 6 years ago
parent 7d53c2b501
commit 74736fce0f

@ -160,5 +160,9 @@
if (!defined('NO_SESSION_AUTOSTART')) {
if (isset($_COOKIE[session_name()])) {
@session_start();
if (!$_SESSION['uid']) {
logout_user();
}
}
}

Loading…
Cancel
Save