summaryrefslogtreecommitdiff
path: root/sanity_check.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-12-08 06:36:10 +0100
committerAndrew Dolgov <[email protected]>2006-12-08 06:36:10 +0100
commit333f0b2aae2ed1fc26493562d0e81ea8b07282c9 (patch)
treeec2d90b7e0177ef80044d9c1a71e000a3d7d9ed3 /sanity_check.php
parent85f57c80bd5939d9bd02a9d0914d1a20400ee74e (diff)
block database backed sessions with mysql
Diffstat (limited to 'sanity_check.php')
-rw-r--r--sanity_check.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/sanity_check.php b/sanity_check.php
index 7bc40520d..53193a2d6 100644
--- a/sanity_check.php
+++ b/sanity_check.php
@@ -94,6 +94,10 @@
$err_msg = "config: DATABASE_BACKED_SESSIONS is incompatible with SINGLE_USER_MODE";
}
+ if (DATABASE_BACKED_SESSIONS && DB_TYPE == "mysql") {
+ $err_msg = "config: DATABASE_BACKED_SESSIONS are currently broken with MySQL";
+ }
+
if ($err_msg) {
print "<b>Fatal Error</b>: $err_msg\n";
exit;