summaryrefslogtreecommitdiff
path: root/public/install.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-24 17:28:19 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-24 17:28:19 +0100
commitdf3a8267768058691fec55edbdf946c836acd823 (patch)
treef9004d3e05c703e09c9b19d59a831ce0edda9737 /public/install.php
parent08ff116f040f4c735722963e39fd6eb3716ef352 (diff)
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+
Diffstat (limited to 'public/install.php')
-rw-r--r--public/install.php2
1 files changed, 1 insertions, 1 deletions
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');