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

[task/php5.3] Changed minimum PHP requirement for Ascraeus to 5.3.2

PHPBB3-10693
This commit is contained in:
David King
2012-03-08 17:31:19 -05:00
parent 0ce899cb87
commit 75e731e14b
2 changed files with 3 additions and 3 deletions

View File

@@ -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>';
}