From 033ce847a99cc9c5e8490167543473d656260019 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 26 Nov 2011 15:34:12 +0100 Subject: [PATCH] Fix: Install not locked if PHP version too low but enough for warning --- htdocs/install/check.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/install/check.php b/htdocs/install/check.php index 5edcb72ab10..9e08366394b 100644 --- a/htdocs/install/check.php +++ b/htdocs/install/check.php @@ -73,7 +73,7 @@ if (versioncompare(versionphparray(),array(4,3,10)) < 0) // Minimum to us else if (versioncompare(versionphparray(),array(5,2,0)) < 0) // Minimum supported (warning if lower) { print 'Error '.$langs->trans("WarningPHPVersionTooLow",'5.2.0'); - $checksok=0; + $checksok=1; } else {