fix error custom data events list pandora_enterprise#9304

This commit is contained in:
Daniel Barbero Martin 2022-07-22 10:11:14 +02:00
parent 33f6ae1875
commit bbf9174903
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>';
}
}