summaryrefslogtreecommitdiff
path: root/sanity_check.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-10-01 12:47:34 +0100
committerAndrew Dolgov <[email protected]>2006-10-01 12:47:34 +0100
commitec83ae9f920e09cf3f2d225cdfc91eafb9108c7f (patch)
tree68533d604df60419606cc0d3bafe8d7320e2d2c3 /sanity_check.php
parent44686f2c5a0871431a95082e33ead12161c00a13 (diff)
drop check for DISABLE_SESSIONS
Diffstat (limited to 'sanity_check.php')
-rw-r--r--sanity_check.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/sanity_check.php b/sanity_check.php
index 638ba1e0f..7bc40520d 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 "<b>Fatal Error</b>: $err_msg";
+ print "<b>Fatal Error</b>: $err_msg\n";
exit;
}