diff options
Diffstat (limited to 'installer')
-rw-r--r-- | installer/web.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/web.php b/installer/web.php index 4b225443..33012a79 100644 --- a/installer/web.php +++ b/installer/web.php @@ -73,8 +73,8 @@ function oops($error) { } function check_environment() { - if (version_compare(PHP_VERSION, "5.2", "<")) { - $errors[] = "Gallery 3 requires PHP 5.2 or newer, current version: " . PHP_VERSION; + if (version_compare(PHP_VERSION, "5.2.3", "<")) { + $errors[] = "Gallery 3 requires PHP 5.2.3 or newer, current version: " . PHP_VERSION; } if (!function_exists("mysql_query") && !function_exists("mysqli_init")) { |