PHP 7+ is required

This commit is contained in:
Ben Word
2017-08-02 11:06:58 -05:00
parent 8691074b29
commit a3a268f7f6
3 changed files with 4 additions and 4 deletions

View File

@@ -23,8 +23,8 @@ $sage_error = function ($message, $subtitle = '', $title = '') {
/**
* Ensure compatible version of PHP is used
*/
if (version_compare('5.6.4', phpversion(), '>=')) {
$sage_error(__('You must be using PHP 5.6.4 or greater.', 'sage'), __('Invalid PHP version', 'sage'));
if (version_compare('7', phpversion(), '>=')) {
$sage_error(__('You must be using PHP 7 or greater.', 'sage'), __('Invalid PHP version', 'sage'));
}
/**