diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2012-09-15 17:18:43 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2012-09-15 17:18:43 +0400 |
| commit | 9170056c55792bab49e94f61128b769f21d34b27 (patch) | |
| tree | 478ddc68b430dc12b34395bac8facbf854bb6f25 /include | |
| parent | d1e31c7a747bdfe91a565d6c9dabdd923bdfd8d3 (diff) | |
bump PHP version requirement to 5.3.0
Diffstat (limited to 'include')
| -rw-r--r-- | include/sanity_check.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sanity_check.php b/include/sanity_check.php index 5e34b2f37..bf47db8ee 100644 --- a/include/sanity_check.php +++ b/include/sanity_check.php @@ -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) { |