Remove PHP 5.4 warning in checkSetup

This is catched in index.php as older PHP versions will never execute the code path until there due to 5.4 syntax changes.
This commit is contained in:
Lukas Reschke 2015-05-04 14:42:22 +02:00
parent 08b98a8ede
commit 64393b4c03
1 changed files with 0 additions and 9 deletions

View File

@ -739,15 +739,6 @@ class OC_Util {
$webServerRestart = true;
}
if (version_compare(phpversion(), '5.4.0', '<')) {
$errors[] = array(
'error' => $l->t('PHP %s or higher is required.', '5.4.0'),
'hint' => $l->t('Please ask your server administrator to update PHP to the latest version.'
. ' Your PHP version is no longer supported by ownCloud and the PHP community.')
);
$webServerRestart = true;
}
/**
* PHP 5.6 ships with a PHP setting which throws notices by default for a
* lot of endpoints. Thus we need to ensure that the value is set to -1