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

use static version for session checking, show latest changeset for git version instead of head date

This commit is contained in:
Andrew Dolgov
2013-04-24 16:57:24 +04:00
parent 84ceb6bd2e
commit 3472c4c569
3 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@
function validate_session() {
if (SINGLE_USER_MODE) return true;
if (VERSION != $_SESSION["version"]) return false;
if (VERSION_STATIC != $_SESSION["version"]) return false;
$check_ip = $_SESSION['ip_address'];