2010-02-22 Miguel de Dios <miguel.dedios@artica.es>

* operation/gis_maps/ajax.php: fix bug that pass wrong var to search
	status in function "get_agent_status".



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2399 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2010-02-22 18:09:56 +00:00
parent ec84e1c7a3
commit 126d96f5b9
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-02-22 Miguel de Dios <miguel.dedios@artica.es>
* operation/gis_maps/ajax.php: fix bug that pass wrong var to search
status in function "get_agent_status".
2010-02-22 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_alerts.php: fix when try delete only the alerts from

View File

@ -98,7 +98,7 @@ switch ($opt) {
$agents[$row['tagente_id_agente']] = array(
'icon_path' => get_agent_icon_map($row['tagente_id_agente'], true),
'name' => get_agent_name($row['tagente_id_agente']),
'status' => get_agent_status($idAgent),
'status' => get_agent_status($row['tagente_id_agente']),
'stored_longitude' => $row['stored_longitude'],
'stored_latitude' => $row['stored_latitude']
);