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

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

This commit is contained in:
Andrew Dolgov
2018-10-15 14:53:35 +03:00
parent 7d53c2b501
commit 74736fce0f

View File

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