add sanity check for no auth modules being enabled in PLUGINS

This commit is contained in:
Andrew Dolgov 2012-12-27 21:22:39 +04:00
parent c5bb0440d3
commit 72679db8c7
1 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,10 @@
require_once "sanity_config.php";
if (strpos(PLUGINS, "auth_") === FALSE) {
array_push($errors, "Please enable at least one authentication module via PLUGINS constant in config.php");
}
if (function_exists('posix_getuid') && posix_getuid() == 0) {
array_push($errors, "Please don't run this script as root.");
}