29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-25 23:02:55 +00:00

[4.0] Correct getPhpSetting(): "intl" not "instl" (#34179)

Little typo in $setting->label for the new check about php_intl.
This commit is contained in:
Simone Bussoni 2021-05-24 20:22:31 +02:00 committed by GitHub
parent 1dd1c41ed6
commit 41c8ad3378
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -220,7 +220,7 @@ class ChecksModel extends BaseInstallationModel
// Check for intl support
$setting = new \stdClass;
$setting->label = Text::sprintf('INSTL_EXTENSION_AVAILABLE', 'instl');
$setting->label = Text::sprintf('INSTL_EXTENSION_AVAILABLE', 'intl');
$setting->state = function_exists('transliterator_transliterate');
$setting->recommended = true;
$settings[] = $setting;