From 2b80228f2af9d56786b42fa613017b393c039f7e Mon Sep 17 00:00:00 2001 From: Brian Huisman Date: Mon, 27 May 2024 11:52:40 -0400 Subject: [PATCH] Update PHP version check for 8.1.x --- orcinus/config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orcinus/config.php b/orcinus/config.php index ec136cc..e81536f 100644 --- a/orcinus/config.php +++ b/orcinus/config.php @@ -8,8 +8,8 @@ require __DIR__.'/config.ini.php'; // Check PHP version compatibility -if (PHP_VERSION_ID < 80000) - throw new Exception('Orcinus Site Search requires PHP version ">= 8.0.x". You are running '.PHP_VERSION.'.'); +if (PHP_VERSION_ID < 80100) + throw new Exception('Orcinus Site Search requires PHP version ">= 8.1.x". You are running '.PHP_VERSION.'.'); // ***** Connect to the database