summaryrefslogtreecommitdiff
path: root/include/sanity_check.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-09-15 17:18:43 +0400
committerAndrew Dolgov <[email protected]>2012-09-15 17:18:43 +0400
commit9170056c55792bab49e94f61128b769f21d34b27 (patch)
tree478ddc68b430dc12b34395bac8facbf854bb6f25 /include/sanity_check.php
parentd1e31c7a747bdfe91a565d6c9dabdd923bdfd8d3 (diff)
bump PHP version requirement to 5.3.0
Diffstat (limited to 'include/sanity_check.php')
-rw-r--r--include/sanity_check.php4
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) {