1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-07 14:19:15 +00:00

remove SESSION_EXPIRE_TIME

This commit is contained in:
Andrew Dolgov
2013-03-28 10:06:16 +04:00
parent f231f438ba
commit 6cfd3c149c
4 changed files with 6 additions and 16 deletions

View File

@@ -56,14 +56,6 @@
}
}
if (SESSION_EXPIRE_TIME < 60) {
array_push($errors, "SESSION_EXPIRE_TIME set in config.php is too low, please set it to an integer value >= 60");
}
if (SESSION_EXPIRE_TIME < SESSION_COOKIE_LIFETIME) {
array_push($errors, "SESSION_EXPIRE_TIME set in config.php should be >= to SESSION_COOKIE_LIFETIME");
}
if (SINGLE_USER_MODE) {
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);