Merge pull request #15188 from nextcloud/bugfix/setupcheck-intl

Fix setupcheck for intl module
pull/15248/head
Roeland Jago Douma 6 years ago committed by GitHub
commit 09a2845c75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      settings/Controller/CheckSetupController.php

@ -574,7 +574,7 @@ Raw output
protected function hasRecommendedPHPModules(): array {
$recommendedPHPModules = [];
if (!function_exists('grapheme_strlen')) {
if (!extension_loaded('intl')) {
$recommendedPHPModules[] = 'intl';
}

Loading…
Cancel
Save