summaryrefslogtreecommitdiffstats
path: root/apps/settings/lib
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2021-10-18 10:00:21 +0200
committerGitHub <noreply@github.com>2021-10-18 10:00:21 +0200
commit643e85cfe81ac079bd2e5bcf1a344a20319f48db (patch)
treefaa976361c66fbcb02b8806ae0f849c87ffe6554 /apps/settings/lib
parenta1c8b6e9eb6543cde93ec2fb8be2fddfff0f54d2 (diff)
parent4b8f8c5203da4d04cfd0ca76175130644e11d55b (diff)
downloadnextcloud-server-643e85cfe81ac079bd2e5bcf1a344a20319f48db.tar.gz
nextcloud-server-643e85cfe81ac079bd2e5bcf1a344a20319f48db.zip
Merge pull request #29285 from nextcloud/fix/php-7.3-deprecation
Deprecate PHP7.3 for Nextcloud 23
Diffstat (limited to 'apps/settings/lib')
-rw-r--r--apps/settings/lib/Controller/CheckSetupController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/Controller/CheckSetupController.php b/apps/settings/lib/Controller/CheckSetupController.php
index 89abf68d643..e18dfb6028b 100644
--- a/apps/settings/lib/Controller/CheckSetupController.php
+++ b/apps/settings/lib/Controller/CheckSetupController.php
@@ -299,7 +299,7 @@ class CheckSetupController extends Controller {
* @return bool
*/
protected function isPhpOutdated(): bool {
- return PHP_VERSION_ID < 70300;
+ return PHP_VERSION_ID < 70400;
}
/**