Skip to content

Commit

Permalink
[4.0] Correct getPhpSetting(): "intl" not "instl" (#34179)
Browse files Browse the repository at this point in the history
Little typo in $setting->label for the new check about php_intl.
  • Loading branch information
simbus82 committed May 24, 2021
1 parent 1dd1c41 commit 41c8ad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installation/src/Model/ChecksModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ public function getPhpSettings()

// 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;
Expand Down

0 comments on commit 41c8ad3

Please sign in to comment.