2011-07-15 Juan Manuel Ramon <juanmanuel.ramon@artica.es>

* include/functions_gis.php: Fixed Gis map creation when has agents
	in a layer.
	
	Fixes: #3293392



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4575 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
juanmanuelr 2011-07-15 09:49:07 +00:00
parent 1a282bfed4
commit 2ee9958a07
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2011-07-15 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* include/functions_gis.php: Fixed Gis map creation when has agents
in a layer.
Fixes: #3293392
2011-07-15 Vanessa Gil <vanessa.gil@artica.es>
* operation/events/events_list.php: Fixed filter events.

View File

@ -730,7 +730,7 @@ function gis_save_map($map_name, $map_initial_longitude, $map_initial_latitude,
db_process_sql_insert('tgis_map_layer_has_tagente',
array(
'tgis_map_layer_id_tmap_layer' => $idLayer,
'tagente_id_agente' => agents_get_agent_id($agent_name)
'tagente_id_agente' => agents_get_agent_id(safe_input($agent_name))
)
);
}