summaryrefslogtreecommitdiff
path: root/include/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-24 16:57:24 +0400
committerAndrew Dolgov <[email protected]>2013-04-24 16:57:24 +0400
commit3472c4c5696cfa868b16d81c937605258acd2125 (patch)
tree35b841eeffd8a7e54979404f1ec2909c1f1409df /include/functions.php
parent84ceb6bd2eb0257a1cc863ff40120a694fa51b79 (diff)
use static version for session checking, show latest changeset for git version instead of head date
Diffstat (limited to 'include/functions.php')
-rw-r--r--include/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php
index a41d3a950..39021e9d0 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -659,7 +659,7 @@
@session_start();
$_SESSION["uid"] = $user_id;
- $_SESSION["version"] = VERSION;
+ $_SESSION["version"] = VERSION_STATIC;
$result = db_query("SELECT login,access_level,pwd_hash FROM ttrss_users
WHERE id = '$user_id'");