summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-01-21 21:37:57 +0000
committerBharat Mediratta <bharat@menalto.com>2009-01-21 21:37:57 +0000
commit7a1b986b5b6085ab345d00438d4e94ce4e7106bb (patch)
tree18f59627df1f136b66d3de178bccaabc04626334
parente58a9c509b0a864aee583dd14a018a773dbc63e4 (diff)
Require 5.2.3
-rw-r--r--installer/web.php4
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")) {