Skip to content

Commit 09a2845

Browse files
authored
Merge pull request #15188 from nextcloud/bugfix/setupcheck-intl
Fix setupcheck for intl module
2 parents 5c6deb1 + c424ab7 commit 09a2845

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

settings/Controller/CheckSetupController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ private function getAppDirsWithDifferentOwnerForAppRoot(int $currentUser, array
574574
protected function hasRecommendedPHPModules(): array {
575575
$recommendedPHPModules = [];
576576

577-
if (!function_exists('grapheme_strlen')) {
577+
if (!extension_loaded('intl')) {
578578
$recommendedPHPModules[] = 'intl';
579579
}
580580

0 commit comments

Comments
 (0)