From adc79246dcc1949a6a73360b660283289213566d Mon Sep 17 00:00:00 2001
From: Thijs Kinkhorst <thijs@kinkhorst.com>
Date: Fri, 19 Oct 2018 07:21:33 +0000
Subject: [PATCH] Bump required PHP version to 5.5.

---
 modules/core/www/frontpage_config.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/core/www/frontpage_config.php b/modules/core/www/frontpage_config.php
index 5ab98fa81..75bfc2856 100644
--- a/modules/core/www/frontpage_config.php
+++ b/modules/core/www/frontpage_config.php
@@ -121,7 +121,7 @@ $funcmatrix = [];
 $funcmatrix[] = [
     'required' => 'required',
     'descr' => 'PHP Version >= 5.5. You run: '.phpversion(),
-    'enabled' => version_compare(phpversion(), '5.4', '>=')
+    'enabled' => version_compare(phpversion(), '5.5', '>=')
 ];
 foreach ($functionchecks as $func => $descr) {
     $funcmatrix[] = ['descr' => $descr[1], 'required' => $descr[0], 'enabled' => function_exists($func)];
-- 
GitLab