aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2012-03-27 00:26:59 +0200
committerAndreas Fischer <bantu@phpbb.com>2012-03-27 00:26:59 +0200
commit17a7fb7743ba3eb1bcb3d27d3958d503101c5bbb (patch)
treefe4627ad9df87dc19d863e6c185c6e65ba864c98 /phpBB/install
parenta74e0503108542171b4b8ac627dbf6249fc809ca (diff)
parent9bcf53057eafbe481deda2b8e02f876f58b4176d (diff)
downloadforums-17a7fb7743ba3eb1bcb3d27d3958d503101c5bbb.tar
forums-17a7fb7743ba3eb1bcb3d27d3958d503101c5bbb.tar.gz
forums-17a7fb7743ba3eb1bcb3d27d3958d503101c5bbb.tar.bz2
forums-17a7fb7743ba3eb1bcb3d27d3958d503101c5bbb.tar.xz
forums-17a7fb7743ba3eb1bcb3d27d3958d503101c5bbb.zip
Merge remote-tracking branch 'imkingdavid/task/php5.3' into develop
* imkingdavid/task/php5.3: [task/php5.3] Updated range of tested PHP versions [task/php5.3] Looks like I missed a few places that needed PHP 5.2 changed to PHP 5.3.2 [task/php5.3] Changed minimum PHP requirement for Ascraeus to 5.3.2
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/index.php4
-rw-r--r--phpBB/install/install_install.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php
index 9d003ba6ab..f180511e46 100644
--- a/phpBB/install/index.php
+++ b/phpBB/install/index.php
@@ -17,9 +17,9 @@ define('IN_INSTALL', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
-if (version_compare(PHP_VERSION, '5.2.0') < 0)
+if (version_compare(PHP_VERSION, '5.3.2') < 0)
{
- die('You are running an unsupported PHP version. Please upgrade to PHP 5.2.0 or higher before trying to install phpBB 3.1');
+ die('You are running an unsupported PHP version. Please upgrade to PHP 5.3.2 or higher before trying to install phpBB 3.1');
}
function phpbb_require_updated($path, $optional = false)
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php
index 4663b5204e..361376763d 100644
--- a/phpBB/install/install_install.php
+++ b/phpBB/install/install_install.php
@@ -140,7 +140,7 @@ class install_install extends module
// Test the minimum PHP version
$php_version = PHP_VERSION;
- if (version_compare($php_version, '5.2.0') < 0)
+ if (version_compare($php_version, '5.3.2') < 0)
{
$result = '<strong style="color:red">' . $lang['NO'] . '</strong>';
}