forked from GNUsocial/gnu-social
Updating version check to match requirements
Also removing a legacy check for, nowadays, unsupported versions.
This commit is contained in:
parent
827d6018a7
commit
13736bbb89
@ -96,21 +96,8 @@ abstract class Installer
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (version_compare(PHP_VERSION, '5.2.3', '<')) {
|
if (version_compare(PHP_VERSION, '5.3.2', '<')) {
|
||||||
$this->warning('Require PHP version 5.2.3 or greater.');
|
$this->warning('Require PHP version 5.3.2 or greater.');
|
||||||
$pass = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Look for known library bugs
|
|
||||||
$str = "abcdefghijklmnopqrstuvwxyz";
|
|
||||||
$replaced = preg_replace('/[\p{Cc}\p{Cs}]/u', '*', $str);
|
|
||||||
if ($str != $replaced) {
|
|
||||||
$this->warning('PHP is linked to a version of the PCRE library ' .
|
|
||||||
'that does not support Unicode properties. ' .
|
|
||||||
'If you are running Red Hat Enterprise Linux / ' .
|
|
||||||
'CentOS 5.4 or earlier, see <a href="' .
|
|
||||||
'http://status.net/wiki/Red_Hat_Enterprise_Linux#PCRE_library' .
|
|
||||||
'">our documentation page</a> on fixing this.');
|
|
||||||
$pass = false;
|
$pass = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user