Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Intl/Commands/GenerateIntl.php')
-rw-r--r--plugins/Intl/Commands/GenerateIntl.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Intl/Commands/GenerateIntl.php b/plugins/Intl/Commands/GenerateIntl.php
index d69e8e573b..a2f35a92dd 100644
--- a/plugins/Intl/Commands/GenerateIntl.php
+++ b/plugins/Intl/Commands/GenerateIntl.php
@@ -58,7 +58,7 @@ class GenerateIntl extends ConsoleCommand
}
preg_match_all("~^(.)(.*)$~u", $str, $arr);
- return Common::mb_strtoupper($arr[1][0]).$arr[2][0];
+ return mb_strtoupper($arr[1][0]).$arr[2][0];
}
protected function execute(InputInterface $input, OutputInterface $output)