Merge branch 'ent-9304-columna-custom-data-se-muestra-incorrectamente-en-vista-de-eventos' into 'develop'

fix error custom data events list pandora_enterprise#9304

pandora_enterprise#9304

See merge request artica/pandorafms!5027
This commit is contained in:
Jimmy Olano 2022-07-28 16:25:27 +00:00
commit 86ad06a3bb
1 changed files with 1 additions and 1 deletions

View File

@ -945,7 +945,7 @@ if (is_ajax() === true) {
$custom_data_str = '';
if (isset($custom_data) === true && empty($custom_data) === false) {
foreach ($custom_data as $key => $value) {
$custom_data_str .= $value['attr_name'].' = '.$value['val'].'<br>';
$custom_data_str .= $key.' = '.$value.'<br>';
}
}