Fix for UTF8 issue
This commit is contained in:
parent
5343e0d8b1
commit
c0ffd72bf2
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ class EntityDatatable
|
|||
$str = e($str);
|
||||
|
||||
if (strlen($str) > $max) {
|
||||
return '<span data-toggle="tooltip" data-placement="bottom" title="' . $str . '">' . trim(substr($str, 0, $max)) . '...' . '</span>';
|
||||
return '<span data-toggle="tooltip" data-placement="bottom" title="' . mb_substr($str, 0, 500) . '">' . trim(mb_substr($str, 0, $max)) . '...' . '</span>';
|
||||
} else {
|
||||
return $str;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue