diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-12-08 15:33:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-08 15:33:27 +0100 |
commit | 4c19e75f5d7bc53f15d10a58b098313ca656f7ce (patch) | |
tree | 4254fa2dea6a3ec527d2661e1b04ca10c321d963 /settings | |
parent | 5724e75827beb7635d98ee8c315a206ccc7bc07e (diff) | |
parent | ace96a406a4fea0dcc07abd003495da34b5fa71c (diff) | |
download | nextcloud-server-4c19e75f5d7bc53f15d10a58b098313ca656f7ce.tar.gz nextcloud-server-4c19e75f5d7bc53f15d10a58b098313ca656f7ce.zip |
Merge pull request #7390 from nextcloud/update-php-info
Show hint that PHP 5.6 will not be supported in Nextcloud 14 anymore
Diffstat (limited to 'settings')
-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; } |