aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-09-08 09:20:33 +0200
committerLukas Reschke <lukas@statuscode.ch>2016-09-08 09:20:33 +0200
commitb7decc52e9b2b6fe5a048b93e66d179a4058dc02 (patch)
tree1beefb725c40c8cdf1720a041b068419b5cfbe0a /index.php
parentff691b4d8a26c08dcf9555c70a071cdebd1266e6 (diff)
downloadnextcloud-server-b7decc52e9b2b6fe5a048b93e66d179a4058dc02.tar.gz
nextcloud-server-b7decc52e9b2b6fe5a048b93e66d179a4058dc02.zip
Master supports PHP 7.1
Diffstat (limited to 'index.php')
-rw-r--r--index.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/index.php b/index.php
index 8c3066d2409..75a2d03fa7a 100644
--- a/index.php
+++ b/index.php
@@ -33,14 +33,6 @@ if (version_compare(PHP_VERSION, '5.6.0') === -1) {
return;
}
-// Show warning if PHP 7.1 is used as Nextcloud is not compatible with PHP 7.1 for now
-// @see https://github.com/nextcloud/docker-ci/issues/10
-if (version_compare(PHP_VERSION, '7.1.0') !== -1) {
- echo 'This version of Nextcloud is not compatible with PHP 7.1.<br/>';
- echo 'You are currently running ' . PHP_VERSION . '.';
- return;
-}
-
try {
require_once 'lib/base.php';