]> git.wh0rd.org - tt-rss.git/commitdiff
if PHP_VERSION check fails, show current version
authorAndrew Dolgov <noreply@fakecake.org>
Mon, 13 Aug 2018 17:13:08 +0000 (20:13 +0300)
committerAndrew Dolgov <noreply@fakecake.org>
Mon, 13 Aug 2018 17:13:08 +0000 (20:13 +0300)
include/sanity_check.php
index.php
install/index.php

index 8f75217560d2cd70decb47e57a0efe0ec990cc6e..460bd0ba70d614ecba77d507ae544f0b35b9f0b3 100755 (executable)
@@ -47,7 +47,7 @@
                        }
 
                        if (version_compare(PHP_VERSION, '5.6.0', '<')) {
-                               array_push($errors, "PHP version 5.6.0 or newer required.");
+                               array_push($errors, "PHP version 5.6.0 or newer required. You're using " . PHP_VERSION . ".");
                        }
 
                        if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {
index f9e26204e11ce5bce5c60313f05c37cc8c0acff4..0280a072864938a7954348fa0bd23e9eae8cfb76 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;
        }
 
index e20cd48ca3e3ea630e7582b60ac83c1e20c81ed5..764283ab8dfdf8f019d8d07544d3ea39e43ad604 100755 (executable)
@@ -39,7 +39,7 @@
                $errors = array();
 
                if (version_compare(PHP_VERSION, '5.6.0', '<')) {
-                       array_push($errors, "PHP version 5.6.0 or newer required.");
+                       array_push($errors, "PHP version 5.6.0 or newer required. You're using " . PHP_VERSION . ".");
                }
 
                if (!function_exists("curl_init") && !ini_get("allow_url_fopen")) {