1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 18:01:28 +00:00

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

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.");
}