From: Andrew Dolgov Date: Sun, 1 Oct 2006 11:47:34 +0000 (+0100) Subject: drop check for DISABLE_SESSIONS X-Git-Tag: 1.2.4~29 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=ec83ae9f920e09cf3f2d225cdfc91eafb9108c7f;p=tt-rss.git drop check for DISABLE_SESSIONS --- diff --git a/sanity_check.php b/sanity_check.php index 638ba1e0..7bc40520 100644 --- a/sanity_check.php +++ b/sanity_check.php @@ -86,16 +86,16 @@ "SESSION_COOKIE_LIFETIME_REMEMBER"; } - if (defined('DISABLE_SESSIONS')) { +/* if (defined('DISABLE_SESSIONS')) { $err_msg = "config: you have enabled DISABLE_SESSIONS. Please disable this option."; - } +} */ if (DATABASE_BACKED_SESSIONS && SINGLE_USER_MODE) { $err_msg = "config: DATABASE_BACKED_SESSIONS is incompatible with SINGLE_USER_MODE"; } if ($err_msg) { - print "Fatal Error: $err_msg"; + print "Fatal Error: $err_msg\n"; exit; }