]> git.wh0rd.org - tt-rss.git/blobdiff - index.php
if PHP_VERSION check fails, show current version
[tt-rss.git] / index.php
index 31d7670386f1886dc9a86d2cac0b540fe728f611..0280a072864938a7954348fa0bd23e9eae8cfb76 100644 (file)
--- a/index.php
+++ b/index.php
@@ -11,8 +11,8 @@
 
        // 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.3.0', '<')) {
-               print "<b>Fatal Error</b>: PHP version 5.3.0 or newer required.\n";
+       if (version_compare(PHP_VERSION, '5.6.0', '<')) {
+               print "<b>Fatal Error</b>: PHP version 5.6.0 or newer required. You're using " . PHP_VERSION . ".\n";
                exit;
        }
 
                'use strict';
                require({cache:{}});
        <?php
-               require_once 'lib/jshrink/Minifier.php';
-
                print get_minified_js(["tt-rss.js",
                        "functions.js", "feedlist.js", "viewfeed.js", "PluginHost.js"]);
-
+       ?>
+       </script>
+       <script type="text/javascript">
+       <?php
                foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
                        if (method_exists($p, "get_js")) {
                                echo "try {";