1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-12 03:34:04 +02:00

[ticket/7090] Update documented minimum PHP version to 5.2.0

PHPBB3-7090
This commit is contained in:
Igor Wiedler
2011-07-13 09:51:09 +02:00
parent 09e0460e5b
commit 541a7db101
7 changed files with 12 additions and 13 deletions

View File

@@ -141,7 +141,7 @@ class install_install extends module
// Test the minimum PHP version
$php_version = PHP_VERSION;
if (version_compare($php_version, '4.3.3') < 0)
if (version_compare($php_version, '5.2.0') < 0)
{
$result = '<strong style="color:red">' . $lang['NO'] . '</strong>';
}