From bbf917490376ea9aff9c0a639fcd5c851c87a8ee Mon Sep 17 00:00:00 2001 From: Daniel Barbero Martin Date: Fri, 22 Jul 2022 10:11:14 +0200 Subject: [PATCH] fix error custom data events list pandora_enterprise#9304 --- pandora_console/operation/events/events.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/operation/events/events.php b/pandora_console/operation/events/events.php index 3d6b2cc96c..019ccbb006 100644 --- a/pandora_console/operation/events/events.php +++ b/pandora_console/operation/events/events.php @@ -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'].'
'; + $custom_data_str .= $key.' = '.$value.'
'; } }