diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-10-18 09:21:04 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-01-25 17:25:08 +0100 |
commit | 4259391162c095fbeb7fd4680097b17d21ae3457 (patch) | |
tree | 211277e9242ed461b00955e38949ff4265ca769a /lib/versioncheck.php | |
parent | e85ea0afafde69905b6e646242b110e05ffc1336 (diff) | |
download | nextcloud-server-4259391162c095fbeb7fd4680097b17d21ae3457.tar.gz nextcloud-server-4259391162c095fbeb7fd4680097b17d21ae3457.zip |
Drop PHP7.3
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/versioncheck.php')
-rw-r--r-- | lib/versioncheck.php | 6 |
1 files changed, 3 insertions, 3 deletions
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 <http://www.gnu.org/licenses/>. * */ -// 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<br/>'; + echo 'This version of Nextcloud requires at least PHP 7.4<br/>'; echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.'; exit(1); } |