From df5395b10191de986aafbf1c0aff8b82204b82bc Mon Sep 17 00:00:00 2001 From: Gerald Baumeister Date: Mon, 16 Jul 2018 18:08:25 +0200 Subject: [PATCH] Added check for php-intl requirement --- src/Dev/Install/InstallRequirements.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Dev/Install/InstallRequirements.php b/src/Dev/Install/InstallRequirements.php index ed2529278..d83d61215 100644 --- a/src/Dev/Install/InstallRequirements.php +++ b/src/Dev/Install/InstallRequirements.php @@ -384,6 +384,13 @@ class InstallRequirements 'SimpleXML support not included in PHP.' )); + // Check for INTL support + $this->requireClass('IntlTimeZone', array( + 'PHP Configuration', + 'Intl support', + 'Internationalization (php-intl) support not included in PHP.' + )); + // Check for token_get_all $this->requireFunction('token_get_all', array( "PHP Configuration",