From 9c936ba2ccb4e9a2e026ac0fbf2dbdaef5f1c69a Mon Sep 17 00:00:00 2001 From: vAugagneur Date: Fri, 25 May 2012 06:53:32 +0000 Subject: [PATCH] //now PrestaShop need at least PHP 5.1.3 to run --- install-dev/init.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-dev/init.php b/install-dev/init.php index 114603874..26daa31a1 100644 --- a/install-dev/init.php +++ b/install-dev/init.php @@ -26,8 +26,8 @@ */ // Check PHP version -if (version_compare(PHP_VERSION, '5.1.2', '<')) - die('You need at least PHP 5.1.2 to run PrestaShop. Your current PHP version is '.PHP_VERSION); +if (version_compare(PHP_VERSION, '5.1.3', '<')) + die('You need at least PHP 5.1.3 to run PrestaShop. Your current PHP version is '.PHP_VERSION); // Generate common constants define('PS_INSTALLATION_IN_PROGRESS', true);