2010-04-28 Sancho Lerena <slerena@artica.es>
* pandoradb_data.sql: Updated version to 3.1 * pandoradb_migrate_v3.0_to_v3.1.sql: Fix, set log4x correct type id. * include/functions_gis.php: Fixed a notice by undefined value. * images/gis_maps/icons: Deleted several non-useful icons. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2629 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
|
@ -1,3 +1,13 @@
|
|||
2010-04-28 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* pandoradb_data.sql: Updated version to 3.1
|
||||
|
||||
* pandoradb_migrate_v3.0_to_v3.1.sql: Fix, set log4x correct type id.
|
||||
|
||||
* include/functions_gis.php: Fixed a notice by undefined value.
|
||||
|
||||
* images/gis_maps/icons: Deleted several non-useful icons.
|
||||
|
||||
2010-04-28 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/functions_agents.php, godmode/gis_maps/configure_gis_map.php,
|
||||
|
|
|
@ -69,7 +69,7 @@ INSERT INTO tconfig (`token`, `value`) VALUES ('stats_interval', '300');
|
|||
|
||||
-- Log4x Module
|
||||
|
||||
INSERT INTO ttipo_modulo (`id_tipo`, `nombre`, `categoria`, `descripcion`, `icon`) VALUES (30, 'log4x', 0, 'Log4x', 'mod_log4x.png');
|
||||
INSERT INTO ttipo_modulo (`id_tipo`, `nombre`, `categoria`, `descripcion`, `icon`) VALUES (24, 'log4x', 0, 'Log4x', 'mod_log4x.png');
|
||||
|
||||
|
||||
-- GIS extension Tables and DATA
|
||||
|
|
Before Width: | Height: | Size: 439 B |
Before Width: | Height: | Size: 351 B |
Before Width: | Height: | Size: 526 B |
Before Width: | Height: | Size: 502 B |
Before Width: | Height: | Size: 554 B |
Before Width: | Height: | Size: 502 B |
Before Width: | Height: | Size: 515 B |
Before Width: | Height: | Size: 849 B |
Before Width: | Height: | Size: 824 B |
Before Width: | Height: | Size: 859 B |
Before Width: | Height: | Size: 824 B |
Before Width: | Height: | Size: 779 B |
|
@ -688,8 +688,7 @@ function saveMap($map_name, $map_initial_longitude, $map_initial_latitude,
|
|||
'tgrupo_id_grupo' => $layer['layer_group']
|
||||
)
|
||||
);
|
||||
|
||||
if (count($layer['layer_agent_list']) > 0) {
|
||||
if ((isset($layer['layer_agent_list'])) AND (count($layer['layer_agent_list']) > 0)) {
|
||||
foreach ($layer['layer_agent_list'] as $agent_name) {
|
||||
process_sql_insert('tgis_map_layer_has_tagente',
|
||||
array(
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
-- along with this program; if not, write to the Free Software
|
||||
-- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
-- Database Data for Pandora FMS 3.0
|
||||
-- Database Data for Pandora FMS 3.1
|
||||
|
||||
-- PLEASE NO NOT USE MULTILINE COMMENTS
|
||||
-- Because Pandora Installer don't understand them
|
||||
|
|