2010-05-11 Sergio Martin <sergio.martin@artica.es>
* godmode/setup/gis_step_2.php: Fixed the creation of connection map in GIS maps for bug 3000031 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2695 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
d25cf8c368
commit
1c0c23f5f0
|
@ -1,3 +1,8 @@
|
|||
2010-05-11 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* godmode/setup/gis_step_2.php: Fixed the creation
|
||||
of connection map in GIS maps for bug 3000031
|
||||
|
||||
2010-05-11 Raúl Mateos <raulofpandora@gmail.com>
|
||||
|
||||
* godmode/reporting/map_builder.php: Fixed a typo.
|
||||
|
|
|
@ -126,7 +126,7 @@ switch ($action) {
|
|||
}
|
||||
|
||||
//TODO VALIDATE PARAMETERS
|
||||
if ($mapConnection_name != "" && $mapConnection_type != 0) {
|
||||
if ($mapConnection_name != "" && $mapConnection_type != ""){
|
||||
saveMapConnection($mapConnection_name, $mapConnection_group,
|
||||
$mapConnection_numLevelsZoom, $mapConnection_defaultZoom,
|
||||
$mapConnection_defaultLatitude, $mapConnection_defaultLongitude,
|
||||
|
@ -134,11 +134,10 @@ switch ($action) {
|
|||
$mapConnection_centerLongitude, $mapConnection_centerAltitude,
|
||||
$mapConnectionData, $idConnectionMap);
|
||||
}
|
||||
|
||||
|
||||
require_once('gis.php');
|
||||
return;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
$table->width = '90%';
|
||||
|
||||
|
|
Loading…
Reference in New Issue