]> source.dussan.org Git - nextcloud-server.git/commitdiff
Allow php7.4
authorChristoph Wurst <christoph@winzerhof-wurst.at>
Thu, 21 Nov 2019 08:16:42 +0000 (09:16 +0100)
committerRoeland Jago Douma <roeland@famdouma.nl>
Wed, 27 Nov 2019 12:34:41 +0000 (13:34 +0100)
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
lib/versioncheck.php

index ffaa0e510a347a616f9e4a24b007d2151a251c70..b130480f823e31244b28582a7a106863120652e8 100644 (file)
@@ -8,10 +8,10 @@ if (version_compare(PHP_VERSION, '7.1') === -1) {
        exit(-1);
 }
 
-// Show warning if > PHP 7.3 is used as Nextcloud is not compatible with > PHP 7.3 for now
-if (version_compare(PHP_VERSION, '7.4.0') !== -1) {
+// Show warning if > PHP 7.4 is used as Nextcloud is not compatible with > PHP 7.4 for now
+if (version_compare(PHP_VERSION, '7.5.0') !== -1) {
        http_response_code(500);
-       echo 'This version of Nextcloud is not compatible with > PHP 7.3.<br/>';
+       echo 'This version of Nextcloud is not compatible with > PHP 7.4.<br/>';
        echo 'You are currently running ' . PHP_VERSION . '.';
        exit(-1);
 }