Merge pull request #15223 from nextcloud/backport/15188/stable16

[stable16] Fix setupcheck for intl module
This commit is contained in:
Roeland Jago Douma 2019-04-25 12:05:27 +02:00 committed by GitHub
commit e4d05cb669
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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