bump PHP version requirement to 5.3.0

This commit is contained in:
Andrew Dolgov 2012-09-15 17:18:43 +04:00
parent d1e31c7a74
commit 9170056c55
1 changed files with 2 additions and 2 deletions

View File

@ -13,8 +13,8 @@
array_push($errors, "Please don't run this script as root.");
}
if (version_compare("5.2.0", phpversion()) == 1) {
array_push($errors, "PHP version 5.2.0 or newer required.");
if (version_compare("5.3.0", phpversion()) == 1) {
array_push($errors, "PHP version 5.3.0 or newer required.");
}
if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {