From 84b55f49fe4677b5fabed482aa71135cd3360e05 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Thu, 2 Jul 2020 14:45:44 -0400 Subject: [PATCH] Update minimum version check. --- module/VuFind/src/VuFind/Controller/InstallController.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module/VuFind/src/VuFind/Controller/InstallController.php b/module/VuFind/src/VuFind/Controller/InstallController.php index 82404f9e687..13a611bf7a2 100644 --- a/module/VuFind/src/VuFind/Controller/InstallController.php +++ b/module/VuFind/src/VuFind/Controller/InstallController.php @@ -225,8 +225,8 @@ class InstallController extends AbstractBase return false; } - // We need at least PHP v7.0.8: - return PHP_VERSION_ID >= 70008; + // We need at least PHP v7.2.0: + return PHP_VERSION_ID >= 70200; } /** @@ -259,7 +259,7 @@ class InstallController extends AbstractBase // Is our version new enough? if (!$this->phpVersionIsNewEnough()) { - $msg = "VuFind requires PHP version 7.0.8 or newer; you are running " + $msg = "VuFind requires PHP version 7.2 or newer; you are running " . phpversion() . ". Please upgrade."; $this->flashMessenger()->addMessage($msg, 'error'); $problems++; -- GitLab