2011-11-29 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* include/functions_reporting.php: Removed entities in events reports. Fixes: #3445082 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5197 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
53c8ca2fc0
commit
8045546d21
|
@ -1,3 +1,10 @@
|
|||
2011-11-29 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* include/functions_reporting.php: Removed entities in events
|
||||
reports.
|
||||
|
||||
Fixes: #3445082
|
||||
|
||||
2011-11-29 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* include/functions_graph.php
|
||||
|
|
|
@ -1738,7 +1738,7 @@ function reporting_get_agents_detailed_event ($id_agents, $period = 0, $date = 0
|
|||
foreach ($events as $eventRow) {
|
||||
foreach ($eventRow as $event) {
|
||||
$data = array ();
|
||||
$data[0] = $event['evento'];
|
||||
$data[0] = io_safe_output($event['evento']);
|
||||
$data[1] = $event['event_type'];
|
||||
$data[2] = get_priority_name ($event['criticity']);
|
||||
$data[3] = $event['count_rep'];
|
||||
|
@ -1787,7 +1787,7 @@ function reporting_get_group_detailed_event ($id_group, $period = 0, $date = 0,
|
|||
if ($events) {
|
||||
foreach ($events as $event) {
|
||||
$data = array ();
|
||||
$data[0] = $event['evento'];
|
||||
$data[0] = io_safe_output($event['evento']);
|
||||
$data[1] = $event['event_type'];
|
||||
$data[2] = get_priority_name ($event['criticity']);
|
||||
$data[3] = $event['timestamp'];
|
||||
|
@ -1856,7 +1856,7 @@ function reporting_get_module_detailed_event ($id_modules, $period = 0, $date =
|
|||
foreach ($events as $eventRow) {
|
||||
foreach ($eventRow as $event) {
|
||||
$data = array ();
|
||||
$data[0] = $event['evento'];
|
||||
$data[0] = io_safe_output($event['evento']);
|
||||
$data[1] = $event['event_type'];
|
||||
$data[2] = get_priority_name ($event['criticity']);
|
||||
$data[3] = $event['count_rep'];
|
||||
|
|
Loading…
Reference in New Issue