diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 7193cea953..b536d03071 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2011-06-08 Juan Manuel Ramon + + * operation/events/events_list.php: Added tag information in this + view. + 2011-06-08 Juan Manuel Ramon * godmode/tag/edit_tag.php: Comma characters are erased diff --git a/pandora_console/operation/events/events_list.php b/pandora_console/operation/events/events_list.php index 7d4f53730d..3cc68e795b 100644 --- a/pandora_console/operation/events/events_list.php +++ b/pandora_console/operation/events/events_list.php @@ -611,7 +611,14 @@ foreach ($result as $event) { } else { $string .= '- ' . __('Empty') . ' -'; } - + $string .= ''; + $string .= '' . '' . __('Tags') . ':'; + if ($event["tags"] != '') { + $string .= $event["tags"]; + } + else { + $string .= '- ' . __('Empty') . ' -'; + } $string .= ''; $string .= '';