From e5a071e8524c8c4943b82674b38f1981c42693fe Mon Sep 17 00:00:00 2001 From: dignajar Date: Fri, 26 Jun 2015 02:09:22 -0300 Subject: [PATCH] Bug fixes --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index 0e049d82..93819dc0 100644 --- a/install.php +++ b/install.php @@ -56,7 +56,7 @@ function checkSystem() array_push($stdOut, $errorText); } - if(!version_compare(phpversion(), '5.2', '>')) + if(!version_compare(phpversion(), '5.3', '>=')) { $errorText = 'Current PHP version '.phpversion().', you need > 5.3. (ERR_202)'; error_log($errorText, 0);