summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-01-12 17:07:17 +0100
committerGitHub <noreply@github.com>2018-01-12 17:07:17 +0100
commit84a17f082189514814d4e1c8b317cd704cf9b550 (patch)
tree501635bb99bcfec0fd5b7b514219ddbb0d695532 /lib
parent15bbf087744a0f535574e044861c527cb8b8ccf0 (diff)
parent6d95f903616e9e0d84b0c9075d3b3fcd6b582d9f (diff)
downloadnextcloud-server-84a17f082189514814d4e1c8b317cd704cf9b550.tar.gz
nextcloud-server-84a17f082189514814d4e1c8b317cd704cf9b550.zip
Merge pull request #7815 from nextcloud/php7-and-higher
Raise PHP version number to PHP 7.0
Diffstat (limited to 'lib')
-rw-r--r--lib/versioncheck.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/versioncheck.php b/lib/versioncheck.php
index 23b09c28e14..48e16471967 100644
--- a/lib/versioncheck.php
+++ b/lib/versioncheck.php
@@ -1,10 +1,10 @@
<?php
-// Show warning if a PHP version below 5.6.0 is used, this has to happen here
-// because base.php will already use 5.6 syntax.
-if (version_compare(PHP_VERSION, '5.6.0') === -1) {
+// Show warning if a PHP version below 7.0 is used, this has to happen here
+// because base.php will already use 7.0 syntax.
+if (version_compare(PHP_VERSION, '7.0') === -1) {
http_response_code(500);
- echo 'This version of Nextcloud requires at least PHP 5.6.0<br/>';
+ echo 'This version of Nextcloud requires at least PHP 7.0<br/>';
echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.';
exit(-1);
}