]> git.wh0rd.org - tt-rss.git/blobdiff - index.php
Check for PHP 5.6 minimum everywhere.
[tt-rss.git] / index.php
index a1bcd5643570549dbcf34ee1d8dff41f8541b609..f9e26204e11ce5bce5c60313f05c37cc8c0acff4 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.\n";
                exit;
        }
 
        } ?>
 
        <script type="text/javascript">
+               '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 {";