Skip to content
Snippets Groups Projects
Unverified Commit f228d73b authored by Daniel Kesselberg's avatar Daniel Kesselberg
Browse files

Update check for outdated php version.

parent baf386b5
No related branches found
No related tags found
No related merge requests found
...@@ -262,12 +262,8 @@ class CheckSetupController extends Controller { ...@@ -262,12 +262,8 @@ class CheckSetupController extends Controller {
* *
* @return bool * @return bool
*/ */
protected function isPhpOutdated() { protected function isPhpOutdated(): bool {
if (version_compare(PHP_VERSION, '7.1.0', '<')) { return PHP_VERSION_ID < 70300;
return true;
}
return false;
} }
/** /**
...@@ -276,7 +272,7 @@ class CheckSetupController extends Controller { ...@@ -276,7 +272,7 @@ class CheckSetupController extends Controller {
* *
* @return array * @return array
*/ */
private function isPhpSupported() { private function isPhpSupported(): array {
return ['eol' => $this->isPhpOutdated(), 'version' => PHP_VERSION]; return ['eol' => $this->isPhpOutdated(), 'version' => PHP_VERSION];
} }
......
...@@ -263,17 +263,17 @@ ...@@ -263,17 +263,17 @@
type: OC.SetupChecks.MESSAGE_TYPE_WARNING type: OC.SetupChecks.MESSAGE_TYPE_WARNING
}); });
} }
if(data.phpSupported && data.phpSupported.eol) { if (data.phpSupported && data.phpSupported.eol) {
messages.push({ messages.push({
msg: t('core', 'You are currently running PHP {version}. Upgrade your PHP version to take advantage of <a target="_blank" rel="noreferrer noopener" href="{phpLink}">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it.', {version: data.phpSupported.version, phpLink: 'https://secure.php.net/supported-versions.php'}), msg: t('core', 'You are currently running PHP {version}. Upgrade your PHP version to take advantage of <a target="_blank" rel="noreferrer noopener" href="{phpLink}">performance and security updates provided by the PHP Group</a> as soon as your distribution supports it.', { version: data.phpSupported.version, phpLink: 'https://secure.php.net/supported-versions.php' }),
type: OC.SetupChecks.MESSAGE_TYPE_INFO type: OC.SetupChecks.MESSAGE_TYPE_INFO
}); })
} }
if(data.phpSupported && data.phpSupported.version.substr(0, 3) === '5.6') { if (data.phpSupported && data.phpSupported.version.substr(0, 3) === '7.2') {
messages.push({ messages.push({
msg: t('core', 'You are currently running PHP 5.6. The current major version of Nextcloud is the last that is supported on PHP 5.6. It is recommended to upgrade the PHP version to 7.0+ to be able to upgrade to Nextcloud 14.'), msg: t('core', 'Nextcloud 19 is the last release supporting PHP 7.2. Nextcloud 20 requires at least PHP 7.3.'),
type: OC.SetupChecks.MESSAGE_TYPE_INFO type: OC.SetupChecks.MESSAGE_TYPE_INFO
}); })
} }
if(!data.forwardedForHeadersWorking) { if(!data.forwardedForHeadersWorking) {
messages.push({ messages.push({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment