diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index a8d0014578..f62718f78e 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,7 @@ +2011-11-28 Juan Manuel Ramon + + * operation/events/events_list.php: Removed traces. + 2011-11-28 Juan Manuel Ramon * operation/events/events_list.php diff --git a/pandora_console/operation/events/events_list.php b/pandora_console/operation/events/events_list.php index 51b6505285..27392835d1 100644 --- a/pandora_console/operation/events/events_list.php +++ b/pandora_console/operation/events/events_list.php @@ -691,14 +691,10 @@ foreach ($result as $event) { $string .= '' . '' . __('Tags') . ''; if ($event["tags"] != '') { $tag_array = explode(',', $event["tags"]); - //html_debug_print($tag_array); foreach ($tag_array as $tag_element){ $blank_char_pos = strpos($tag_element, ' '); - //html_debug_print($blank_char_pos); $tag_name = substr($tag_element, 0, $blank_char_pos); $tag_url = substr($tag_element, $blank_char_pos + 1); - //html_debug_print("Tag name " . $tag_name); - //html_debug_print($tag_url); $string .= ' ' .$tag_name; if (!empty($tag_url)){ $string .= ' ' . html_print_image('images/lupa.png', true, array('title' => __('Click here to open a popup window with URL tag'))) . ' ';