Fix #274 #503 - Listview accented characters

This commit is contained in:
y.yerli 2025-01-31 16:37:03 +03:00 committed by Jack Anderson
parent 2c99907054
commit 938f9ee311

View file

@ -83,7 +83,7 @@ class ParentMapper implements TypeMapperInterface
}
$relate['id'] = $parentId;
$relate[$rName] = $bean->$name ?? '';
$relate[$rName] = html_entity_decode($bean->$name ?? '', ENT_QUOTES);
$container[$newName] = $relate;
}