From ed3d77d5bbcd561f0916d36e1d7a4f370ce61da4 Mon Sep 17 00:00:00 2001 From: Frederic Guzman Date: Thu, 6 Oct 2016 15:59:30 -0400 Subject: [PATCH] Applying similar corrections in file and checkstyle result --- CRM/Utils/Address.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Utils/Address.php b/CRM/Utils/Address.php index 4aa2c6ae78..c8602fa5e2 100644 --- a/CRM/Utils/Address.php +++ b/CRM/Utils/Address.php @@ -106,11 +106,11 @@ class CRM_Utils_Address { } else { //Capitalization display on uppercase to contries with special characters - $fields['country'] = mb_convert_case($fields['country'], MB_CASE_UPPER,"UTF-8"); + $fields['country'] = mb_convert_case($fields['country'], MB_CASE_UPPER, "UTF-8"); } } else { - $fields['country'] = strtoupper($fields['country']); + $fields['country'] = mb_convert_case($fields['country'], MB_CASE_UPPER, "UTF-8"); } } -- 2.25.1