From 8319ad370ba8f598e0f5fdef90b4f7debeba2f85 Mon Sep 17 00:00:00 2001 From: juanmanuelr Date: Mon, 28 Nov 2011 14:15:16 +0000 Subject: [PATCH] 2011-11-28 Juan Manuel Ramon * operation/events/events_list.php: Removed traces. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5185 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 4 ++++ pandora_console/operation/events/events_list.php | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) 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'))) . ' ';