1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

if PHP_VERSION check fails, show current version

This commit is contained in:
Andrew Dolgov
2018-08-13 20:13:08 +03:00
parent 0da7415ea1
commit c4869cd573
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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;
}