diff --git a/module/VuFind/src/VuFind/Controller/InstallController.php b/module/VuFind/src/VuFind/Controller/InstallController.php index 82404f9e6872cd41784a8206f613ac24706468ea..13a611bf7a265b8c727241b2eeaba1f481d3d117 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++;