summaryrefslogtreecommitdiff
path: root/installer/check.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2011-01-14 08:50:46 +0000
committeralecpl <alec@alec.pl>2011-01-14 08:50:46 +0000
commitd36115bfb8a2c7fcf7d9a364f3cdc6d51dfbd316 (patch)
tree35f71b24500ae8cf680b80026233ab7fb9e135e4 /installer/check.php
parentd8d467c6c7476fda818be4c5d275965377be6e8c (diff)
- Require PHP 5.2.1 or greater
Diffstat (limited to 'installer/check.php')
-rw-r--r--installer/check.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/check.php b/installer/check.php
index 7fa4d95d3..0ba5f58de 100644
--- a/installer/check.php
+++ b/installer/check.php
@@ -68,7 +68,7 @@ echo '<input type="hidden" name="_step" value="' . ($RCI->configured ? 3 : 2) .
<h3>Checking PHP version</h3>
<?php
-define('MIN_PHP_VERSION', '5.2.0');
+define('MIN_PHP_VERSION', '5.2.1');
if (version_compare(PHP_VERSION, MIN_PHP_VERSION, '>=')) {
$RCI->pass('Version', 'PHP ' . PHP_VERSION . ' detected');
} else {