From 2c12ef93aa06bfd1558c66df1f825262369b3a1e Mon Sep 17 00:00:00 2001 From: slawkens Date: Tue, 23 Jan 2018 10:49:25 +0100 Subject: [PATCH] * twig requires php 5.3.3 --- install/steps/3-requirements.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/steps/3-requirements.php b/install/steps/3-requirements.php index 9163d770..14773b18 100644 --- a/install/steps/3-requirements.php +++ b/install/steps/3-requirements.php @@ -22,7 +22,7 @@ function version_check($name, $ok, $info = '', $warning = false) $failed = false; // start validating -version_check($locale['step_requirements_php_version'], (PHP_VERSION_ID >= 50300), PHP_VERSION); +version_check($locale['step_requirements_php_version'], (PHP_VERSION_ID >= 50303), PHP_VERSION); foreach(array('config.local.php', 'images/guilds', 'images/houses', 'images/gallery') as $value) { $is_writable = is_writable(BASE . $value);