summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-31 06:30:20 +0100
committerAndrew Dolgov <[email protected]>2006-03-31 06:30:20 +0100
commit9a3bb96a8700c60235dc27406e32d8affdc1c106 (patch)
tree3159e1408ea3ceae13aee2e1429e09863d5bffb4 /backend.php
parent5854b0164d3138d1821fd8374655d30df8a30440 (diff)
remove stupid DISABLE_SESSIONS kludge, check if constant is defined, not true
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index f073dc9a3..a9f79667b 100644
--- a/backend.php
+++ b/backend.php
@@ -3913,7 +3913,7 @@
"SESSION_COOKIE_LIFETIME_REMEMBER";
}
- if (defined('DISABLE_SESSIONS') && DISABLE_SESSIONS) {
+ if (defined('DISABLE_SESSIONS')) {
return "config: you have enabled DISABLE_SESSIONS. Please disable this option.";
}