summaryrefslogtreecommitdiff
path: root/install/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'install/index.php')
-rw-r--r--install/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/install/index.php b/install/index.php
index 6ff8acfbc..0859fc4d7 100644
--- a/install/index.php
+++ b/install/index.php
@@ -84,8 +84,8 @@
function sanity_check($db_type) {
$errors = array();
- if (version_compare(PHP_VERSION, '5.6.0', '<')) {
- array_push($errors, "PHP version 5.6.0 or newer required. You're using " . PHP_VERSION . ".");
+ if (version_compare(PHP_VERSION, '7.0.0', '<')) {
+ array_push($errors, "PHP version 7.0.0 or newer required. You're using " . PHP_VERSION . ".");
}
if (!function_exists("curl_init") && !ini_get("allow_url_fopen")) {