MDL-24755 fixed double define in configonly scripts, credit goes to Aparup Banerjee

This commit is contained in:
Petr Skoda
2010-10-19 07:36:22 +00:00
parent 192bcd76da
commit e4c05ec7b8
+6 -2
View File
@@ -165,10 +165,14 @@ if (file_exists("$CFG->dataroot/climaintenance.html")) {
readfile("$CFG->dataroot/climaintenance.html");
die;
} else {
define('CLI_MAINTENANCE', true);
if (!defined('CLI_MAINTENANCE')) {
define('CLI_MAINTENANCE', true);
}
}
} else {
define('CLI_MAINTENANCE', false);
if (!defined('CLI_MAINTENANCE')) {
define('CLI_MAINTENANCE', false);
}
}
// Detect ajax scripts - they are similar to CLI because we can not redirect, output html, etc.