diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 0ce24f2f1c..e2f5d8ae66 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2013-05-21 Miguel de Dios + + * operation/agentes/gis_view.php: fixed the title of agent in the + list of positions. + 2013-05-20 Sergio Martin * include/styles/pandora.css diff --git a/pandora_console/operation/agentes/gis_view.php b/pandora_console/operation/agentes/gis_view.php index c9c69fc091..8f7e0d312e 100644 --- a/pandora_console/operation/agentes/gis_view.php +++ b/pandora_console/operation/agentes/gis_view.php @@ -37,6 +37,7 @@ $agent_name = agents_get_name($agentId); $agentData = gis_get_data_last_position_agent($id_agente); //Avoid the agents with characters that fails the div. +$agent_name_original = $agent_name; $agent_name = md5($agent_name); $url = ''; @@ -124,7 +125,7 @@ else { $table->head = array(__("Longitude"), __("Latitude"), __("Altitude"), __("From"), __("To"), __("Description"), '# '.__("of Packages"), __("Manual placement")); $table->class = 'position_data_table'; $table->id = $agent_name.'_position_data_table'; - $table->title = $agent_name." ". __("positional data"); + $table->title = $agent_name_original . " " . __("positional data"); $table->titlestyle = "background-color:#799E48;"; html_print_table($table); unset($table);