From df3a8267768058691fec55edbdf946c836acd823 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sun, 24 Nov 2013 17:28:19 +0100 Subject: Requiert PHP 5.2+ FreshRSS utilise des fonctions apparues avec PHP 5.2 (comme json_decode). Il serait bien de mettre un message conseillant 5.3.3+ --- public/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'public') diff --git a/public/install.php b/public/install.php index 2e6519bf8..20ced82a5 100644 --- a/public/install.php +++ b/public/install.php @@ -267,7 +267,7 @@ function checkStep0 () { ); } function checkStep1 () { - $php = version_compare (PHP_VERSION, '5.1.0') >= 0; + $php = version_compare (PHP_VERSION, '5.2.0') >= 0; $minz = file_exists (LIB_PATH . '/minz'); $curl = extension_loaded ('curl'); $pdo = extension_loaded ('pdo_mysql'); -- cgit v1.2.3