projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e74b6a1
)
Applying similar corrections in file and checkstyle result
author
Frederic Guzman
<frederickgzmn@gmail.com>
Thu, 6 Oct 2016 19:59:30 +0000
(15:59 -0400)
committer
GitHub
<noreply@github.com>
Thu, 6 Oct 2016 19:59:30 +0000
(15:59 -0400)
CRM/Utils/Address.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/Utils/Address.php
b/CRM/Utils/Address.php
index 4aa2c6ae7886e3a5624a7cff5db676dc65bd00ea..c8602fa5e23a86c6f99267521d76f88c87aed58e 100644
(file)
--- 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"
);
}
}