Skip to content

Commit 73c5591

Browse files
authored
Merge pull request #35024 from nextcloud/deprecate/php74
Deprecate PHP7.4
2 parents 6d8774a + 75a1721 commit 73c5591

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

apps/settings/lib/Controller/CheckSetupController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ private function isUsedTlsLibOutdated() {
330330
* @return bool
331331
*/
332332
protected function isPhpOutdated(): bool {
333-
return PHP_VERSION_ID < 70400;
333+
return PHP_VERSION_ID < 80000;
334334
}
335335

336336
/**

core/js/setupchecks.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -303,12 +303,6 @@
303303
type: OC.SetupChecks.MESSAGE_TYPE_INFO
304304
})
305305
}
306-
if (data.phpSupported && data.phpSupported.version.substr(0, 3) === '7.3') {
307-
messages.push({
308-
msg: t('core', 'Nextcloud 23 is the last release supporting PHP 7.3. Nextcloud 24 requires at least PHP 7.4.'),
309-
type: OC.SetupChecks.MESSAGE_TYPE_INFO
310-
})
311-
}
312306
if(!data.forwardedForHeadersWorking) {
313307
messages.push({
314308
msg: t('core', 'The reverse proxy header configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If not, this is a security issue and can allow an attacker to spoof their IP address as visible to the Nextcloud. Further information can be found in the {linkstart}documentation ↗{linkend}.')

0 commit comments

Comments
 (0)