From 0b18b35f5f28b0afc3104f10d33fac5b1675a76a Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 14 Feb 2024 21:28:20 +0000 Subject: require the intl extension for --- Zotlabs/Module/Setup.php | 5 +++++ composer.json | 1 + 2 files changed, 6 insertions(+) diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index a48c6627b..83faf85dc 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -527,6 +527,7 @@ class Setup extends \Zotlabs\Web\Controller { $this->check_add($ck_funcs, t('mb_string PHP module'), true, true); $this->check_add($ck_funcs, t('xml PHP module'), true, true); $this->check_add($ck_funcs, t('zip PHP module'), true, true); + $this->check_add($ck_funcs, t('intl PHP module'), true, true); if(function_exists('apache_get_modules')){ if(! in_array('mod_rewrite', apache_get_modules())) { @@ -583,6 +584,10 @@ class Setup extends \Zotlabs\Web\Controller { $ck_funcs[6]['status'] = false; $ck_funcs[6]['help'] = t('Error: zip PHP module required but not installed.'); } + if(! extension_loaded('intl')) { + $ck_funcs[6]['status'] = false; + $ck_funcs[6]['help'] = t('Error: intl PHP module required but not installed.'); + } $checks = array_merge($checks, $ck_funcs); } diff --git a/composer.json b/composer.json index e3c109c0e..06765eba9 100644 --- a/composer.json +++ b/composer.json @@ -26,6 +26,7 @@ "php": ">=8.0.2", "ext-curl": "*", "ext-iconv": "*", + "ext-intl": "*", "ext-mbstring": "*", "ext-xml": "*", "ext-openssl": "*", -- cgit v1.2.3