Browse Source

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+
Alexandre Alapetite 12 years ago
parent
commit
df3a826776
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/install.php

+ 1 - 1
public/install.php

@@ -267,7 +267,7 @@ function checkStep0 () {
 	);
 	);
 }
 }
 function checkStep1 () {
 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');
 	$minz = file_exists (LIB_PATH . '/minz');
 	$curl = extension_loaded ('curl');
 	$curl = extension_loaded ('curl');
 	$pdo = extension_loaded ('pdo_mysql');
 	$pdo = extension_loaded ('pdo_mysql');