From 633985d6cb8c1212c1b01d6b29159b76ff80bc01 Mon Sep 17 00:00:00 2001 From: jsatoh Date: Mon, 30 May 2011 04:00:23 +0000 Subject: [PATCH] 2011-05-30 Junichi Satoh * operation/agentes/datos_agente.php: Replaced format_data with modules_format_data. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4386 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/operation/agentes/datos_agente.php | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index d0ca141d34..bb61bddf9f 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2011-05-30 Junichi Satoh + + * operation/agentes/datos_agente.php: Replaced format_data with + modules_format_data. + 2011-05-26 Vanessa Gil * godmode/agentes/module_manager_editor.php: Removed unit var. diff --git a/pandora_console/operation/agentes/datos_agente.php b/pandora_console/operation/agentes/datos_agente.php index a8460bc21a..6731990741 100644 --- a/pandora_console/operation/agentes/datos_agente.php +++ b/pandora_console/operation/agentes/datos_agente.php @@ -70,7 +70,7 @@ if ($moduletype_name == "log4x") { $columns = array( "Timestamp" => array("utimestamp", "modules_format_timestamp", "align" => "center" ), - "Sev" => array("severity", "format_data", "align" => "center", "width" => "70px"), + "Sev" => array("severity", "modules_format_data", "align" => "center", "width" => "70px"), "Message" => array("message", "modules_format_verbatim", "align" => "left", "width" => "45%"), "StackTrace" => array("stacktrace", "modules_format_verbatim", "align" => "left", "width" => "50%") ); @@ -80,7 +80,7 @@ if ($moduletype_name == "log4x") { $columns = array( "Timestamp" => array("utimestamp", "modules_format_timestamp", "align" => "center"), - "Data" => array("datos", "format_data", "align" => "center"), + "Data" => array("datos", "modules_format_data", "align" => "center"), "Time" => array("utimestamp", "modules_format_time", "align" => "center") ); } else { @@ -88,7 +88,7 @@ if ($moduletype_name == "log4x") { $columns = array( "Timestamp" => array("utimestamp", "modules_format_timestamp", "align" => "center"), - "Data" => array("datos", "format_data", "align" => "center"), + "Data" => array("datos", "modules_format_data", "align" => "center"), "Time" => array("utimestamp", "modules_format_time", "align" => "center") ); }