]> git.wh0rd.org - tt-rss.git/blobdiff - include/sanity_check.php
pref-feeds: apply patch by gmargo@forum to show/hide empty categories
[tt-rss.git] / include / sanity_check.php
index 4fe28c3075d34585244366ab73325a11ce666a52..5c631574decf02b8b5f6444cb4d4ae1a578ac965 100644 (file)
@@ -6,11 +6,15 @@
        } else {
 
                define('EXPECTED_CONFIG_VERSION', 25);
-               define('SCHEMA_VERSION', 87);
+               define('SCHEMA_VERSION', 90);
 
                require_once "config.php";
                require_once "sanity_config.php";
 
+               if (function_exists('posix_getuid') && posix_getuid() == 0) {
+                       $err_msg = "Please don't run this script as root.";
+               }
+
                if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {
                        $err_msg = "Configuration file (config.php) has incorrect version. Update it with new options from config.php-dist and set CONFIG_VERSION to the correct value.";
                }
                }
        }
 
-       if ($err_msg) { ?>
+       if ($err_msg && defined($_SERVER['REQUEST_URI'])) { ?>
                <html>
                <head>
                <title>Fatal error</title>
 
        <?php
                die;
+       } else if ($err_msg) {
+               die("[sanity_check] $err_msg\n");
        }
 
 ?>