We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8166448 commit 108710fCopy full SHA for 108710f
lib/versioncheck.php
@@ -1,9 +1,9 @@
1
<?php
2
3
-// Show warning if a PHP version below 7.1 is used,
4
-if (version_compare(PHP_VERSION, '7.1') === -1) {
+// Show warning if a PHP version below 7.2 is used,
+if (version_compare(PHP_VERSION, '7.2') === -1) {
5
http_response_code(500);
6
- echo 'This version of Nextcloud requires at least PHP 7.1<br/>';
+ echo 'This version of Nextcloud requires at least PHP 7.2<br/>';
7
echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.';
8
exit(-1);
9
}
0 commit comments