1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-01 14:30:32 +02:00

[task/php5.3] Looks like I missed a few places that needed PHP 5.2 changed to PHP 5.3.2

PHPBB3-10693
This commit is contained in:
David King
2012-03-08 18:04:24 -05:00
parent 75e731e14b
commit 063f6893af
5 changed files with 8 additions and 8 deletions

View File

@@ -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)