From f49c3c7a47b48a82d18f90f88c220c1d1cc30d9b Mon Sep 17 00:00:00 2001 From: Anaggh S Date: Sat, 18 May 2019 23:41:32 +0530 Subject: [PATCH] Raise min php version required 5.3 -> 5.6 in install.php --- install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.php b/install.php index 11c83447..746d9ee4 100644 --- a/install.php +++ b/install.php @@ -8,8 +8,8 @@ */ // Check PHP version -if (version_compare(phpversion(), '5.3', '<')) { - $errorText = 'Current PHP version '.phpversion().', you need > 5.3.'; +if (version_compare(phpversion(), '5.6', '<')) { + $errorText = 'Current PHP version '.phpversion().', you need > 5.6.'; error_log('[ERROR] '.$errorText, 0); exit($errorText); }