From 4259391162c095fbeb7fd4680097b17d21ae3457 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 18 Oct 2021 09:21:04 +0200 Subject: Drop PHP7.3 Signed-off-by: Christoph Wurst --- lib/versioncheck.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/versioncheck.php b/lib/versioncheck.php index 3e840ff5b46..8477442935a 100644 --- a/lib/versioncheck.php +++ b/lib/versioncheck.php @@ -25,10 +25,10 @@ declare(strict_types=1); * along with this program. If not, see . * */ -// Show warning if a PHP version below 7.3 is used, -if (PHP_VERSION_ID < 70300) { +// Show warning if a PHP version below 7.4 is used, +if (PHP_VERSION_ID < 70400) { http_response_code(500); - echo 'This version of Nextcloud requires at least PHP 7.3
'; + echo 'This version of Nextcloud requires at least PHP 7.4
'; echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.'; exit(1); } -- cgit v1.2.3