if user's name contains CJK character, charts will not display #2136
Labels
Priority:Important
Issues & PRs that are important; broken functions, errors - there are workarounds
Type: Bug
Bugs within the core SuiteCRM codebase
i was using suitecrm 7.7.3
\modules\AOR_Charts\AOR_Chart.php
line 637 function getShortenedLabel()
better using mb_substr instead of substr
private function getShortenedLabel($label, $maxLabelSize = 20) { if(strlen($label) > $maxLabelSize) { return mb_substr($label,0,$maxLabelSize).'...'; } else return $label; }
The text was updated successfully, but these errors were encountered: