From: Andrew Dolgov Date: Sat, 15 Sep 2012 13:18:43 +0000 (+0400) Subject: bump PHP version requirement to 5.3.0 X-Git-Tag: 1.6.0~37 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=9170056c55792bab49e94f61128b769f21d34b27;p=tt-rss.git bump PHP version requirement to 5.3.0 --- diff --git a/include/sanity_check.php b/include/sanity_check.php index 5e34b2f3..bf47db8e 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) {