Rollback to requiring PHP 5.3 to fix Ubuntu 12.04 support

This commit is contained in:
Albert Santoni 2013-12-17 12:56:56 -05:00
parent 431ce7cefb
commit 04140c38d1
2 changed files with 4 additions and 4 deletions

View file

@ -532,9 +532,9 @@ class AirtimeInstall
public static function checkPHPVersion()
{
if (PHP_VERSION_ID < 50400)
if (PHP_VERSION_ID < 50300)
{
echo "Error: Airtime requires PHP 5.4 or greater.";
echo "Error: Airtime requires PHP 5.3 or greater.";
return false;
}
return true;