]> git.wh0rd.org - tt-rss.git/blobdiff - index.php
better handle PDOExceptions during open transaction in feed update
[tt-rss.git] / index.php
index f9e26204e11ce5bce5c60313f05c37cc8c0acff4..f3e5928dd65c3d6e7b6f6a8bcc38818e31441838 100644 (file)
--- a/index.php
+++ b/index.php
@@ -12,7 +12,7 @@
        // we need a separate check here because functions.php might get parsed
        // incorrectly before 5.3 because of :: syntax.
        if (version_compare(PHP_VERSION, '5.6.0', '<')) {
-               print "<b>Fatal Error</b>: PHP version 5.6.0 or newer required.\n";
+               print "<b>Fatal Error</b>: PHP version 5.6.0 or newer required. You're using " . PHP_VERSION . ".\n";
                exit;
        }
 
@@ -64,7 +64,7 @@
        <?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
 
        <?php if ($_SESSION["uid"]) {
-               $theme = get_pref( "USER_CSS_THEME", $_SESSION["uid"], false);
+               $theme = get_pref("USER_CSS_THEME", false, false);
                if ($theme && theme_valid("$theme")) {
                        echo stylesheet_tag(get_theme_path($theme));
                } else {