diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-12-04 22:49:01 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-12-08 10:02:41 +0100 |
commit | ace96a406a4fea0dcc07abd003495da34b5fa71c (patch) | |
tree | e9d651b1c0913c0b343ef2be723ab84434062327 /settings/Controller/CheckSetupController.php | |
parent | 567757c793faed6925a538571a9e4f5b8b396bfd (diff) | |
download | nextcloud-server-ace96a406a4fea0dcc07abd003495da34b5fa71c.tar.gz nextcloud-server-ace96a406a4fea0dcc07abd003495da34b5fa71c.zip |
Show hint that PHP 5.6 will not be supported in Nextcloud 14 anymore
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'settings/Controller/CheckSetupController.php')
-rw-r--r-- | settings/Controller/CheckSetupController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/Controller/CheckSetupController.php b/settings/Controller/CheckSetupController.php index ccaaaeaf601..5b7953bf392 100644 --- a/settings/Controller/CheckSetupController.php +++ b/settings/Controller/CheckSetupController.php @@ -238,7 +238,7 @@ class CheckSetupController extends Controller { * @return bool */ protected function isPhpOutdated() { - if (version_compare(PHP_VERSION, '5.5.0') === -1) { + if (version_compare(PHP_VERSION, '7.0.0', '<')) { return true; } |