summaryrefslogtreecommitdiff
path: root/roundcubemail/installer/check.php
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-04-12 13:54:45 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-04-12 13:54:45 +0000
commit83a4e859f8ae505f06c184eb60577529ff6c4be8 (patch)
treeeea0a263dd79a697205db95f0a3b5600e6aa70c9 /roundcubemail/installer/check.php
parent1d297be10effab84c7e084bfc70651f99b10e91b (diff)
Changed codebase to PHP5 with autoloader + added some new classes from the devel-vnext branch
git-svn-id: https://svn.roundcube.net/trunk@1291 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/check.php')
-rw-r--r--roundcubemail/installer/check.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/installer/check.php b/roundcubemail/installer/check.php
index 2afa7da29..7ca982f2d 100644
--- a/roundcubemail/installer/check.php
+++ b/roundcubemail/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', '4.3.1');
+define('MIN_PHP_VERSION', '5.2.0');
if (version_compare(PHP_VERSION, MIN_PHP_VERSION, '>=')) {
$RCI->pass('Version', 'PHP ' . PHP_VERSION . ' detected');
} else {