fix remote_channel(), update php minversion requirement

This commit is contained in:
redmatrix
2016-05-29 18:38:24 -07:00
parent ac4688eac0
commit 3b2679db29
4 changed files with 6 additions and 4 deletions

View File

@@ -384,8 +384,8 @@ class Setup extends \Zotlabs\Web\Controller {
function check_php(&$phpath, &$checks) {
$help = '';
if(version_compare(PHP_VERSION, '5.4') < 0) {
$help .= t('PHP version 5.4 or greater is required.');
if(version_compare(PHP_VERSION, '5.5') < 0) {
$help .= t('PHP version 5.5 or greater is required.');
$this->check_add($checks, t('PHP version'), false, false, $help);
}