diff options
author | svncommit <devs@roundcube.net> | 2008-03-27 12:15:06 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2008-03-27 12:15:06 +0000 |
commit | 1b7ac67161a967d2c1c51b9adf109e7da0231999 (patch) | |
tree | cf1e6eb06cab7152964fa211ef6579d41de1068d | |
parent | 70430e357e2f307fc82207a40d445a01d24de6d5 (diff) |
Fix the fix. Sorry.
-rw-r--r-- | installer/check.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/check.php b/installer/check.php index 7ca982f2d..2afa7da29 100644 --- a/installer/check.php +++ b/installer/check.php @@ -37,7 +37,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', '4.3.1'); if (version_compare(PHP_VERSION, MIN_PHP_VERSION, '>=')) { $RCI->pass('Version', 'PHP ' . PHP_VERSION . ' detected'); } else { |