From 1cd3ebf3bbceb46ce83da894fdc867de580e20a1 Mon Sep 17 00:00:00 2001 From: slawkens Date: Sat, 15 Feb 2020 05:07:51 +0100 Subject: [PATCH] Add PHP Version check on the start of loading --- common.php | 1 + 1 file changed, 1 insertion(+) diff --git a/common.php b/common.php index 93eb219d..e5f37583 100644 --- a/common.php +++ b/common.php @@ -23,6 +23,7 @@ * @copyright 2019 MyAAC * @link https://my-aac.org */ +if (version_compare(phpversion(), '5.3.3', '<')) die('PHP version 5.3.3 or higher is required.'); session_start(); define('MYAAC', true);