mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-27 14:36:05 +00:00
Merge branch 'fix'
This commit is contained in:
@@ -121,8 +121,8 @@ class ArrayValue extends Database
|
||||
continue;
|
||||
}
|
||||
|
||||
if (strlen($value) > $itemMaxLength) {
|
||||
$value = substr($value, 0, $itemMaxLength);
|
||||
if (mb_strlen($value) > $itemMaxLength) {
|
||||
$value = mb_substr($value, 0, $itemMaxLength);
|
||||
}
|
||||
|
||||
$arrayValue = $this->getNew();
|
||||
|
||||
Reference in New Issue
Block a user