2012-06-12 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_v3.2_to_v4.0.sql: added the lost semicolons in some standments. * godmode/reporting/visual_console_builder.php: restore the search modules without entities, because there was a bug into the recon server that recode two times the name, now run all parts fine. MERGED FROM 4.0.2 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6509 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
e883d29b30
commit
c7304140ef
|
@ -1,3 +1,14 @@
|
||||||
|
2012-06-12 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
|
* extras/pandoradb_migrate_v3.2_to_v4.0.sql: added the lost
|
||||||
|
semicolons in some standments.
|
||||||
|
|
||||||
|
* godmode/reporting/visual_console_builder.php: restore the search
|
||||||
|
modules without entities, because there was a bug into the recon
|
||||||
|
server that recode two times the name, now run all parts fine.
|
||||||
|
|
||||||
|
MERGED FROM 4.0.2
|
||||||
|
|
||||||
2012-06-12 Dario Rodriguez <dario.rodriguez@artica.es>
|
2012-06-12 Dario Rodriguez <dario.rodriguez@artica.es>
|
||||||
|
|
||||||
* operation/agentes/estado_agente.php: Improved
|
* operation/agentes/estado_agente.php: Improved
|
||||||
|
|
|
@ -265,3 +265,9 @@ INSERT INTO `tconfig_os` (`name`, `description`, `icon_name`) VALUES ('VMware',
|
||||||
UPDATE tconfig SET value='4.0' WHERE token = 'db_scheme_version';
|
UPDATE tconfig SET value='4.0' WHERE token = 'db_scheme_version';
|
||||||
UPDATE tconfig SET value='PD110923 (3.2 Migrate)' WHERE token = 'db_scheme_build';
|
UPDATE tconfig SET value='PD110923 (3.2 Migrate)' WHERE token = 'db_scheme_build';
|
||||||
|
|
||||||
|
|
||||||
|
-- -----------------------------------------------------
|
||||||
|
-- Encode empty space entities (Added 17th May 2012)
|
||||||
|
-- -----------------------------------------------------
|
||||||
|
UPDATE tnetwork_component SET name = REPLACE(name,' ',' ');
|
||||||
|
UPDATE tlocal_component SET name = REPLACE(name,' ',' ');
|
||||||
|
|
|
@ -218,7 +218,7 @@ switch ($activeTab) {
|
||||||
foreach ($id_agents as $ag) {
|
foreach ($id_agents as $ag) {
|
||||||
$id_module = agents_get_modules($ag,
|
$id_module = agents_get_modules($ag,
|
||||||
array('id_agente_modulo'),
|
array('id_agente_modulo'),
|
||||||
array('nombre' => io_safe_input($mod)));
|
array('nombre' => $mod));
|
||||||
|
|
||||||
if (empty($id_module))
|
if (empty($id_module))
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue