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:
mdtrooper 2012-06-12 12:57:22 +00:00
parent e883d29b30
commit c7304140ef
3 changed files with 18 additions and 1 deletions

View File

@ -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>
* operation/agentes/estado_agente.php: Improved

View File

@ -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='PD110923 (3.2 Migrate)' WHERE token = 'db_scheme_build';
-- -----------------------------------------------------
-- Encode empty space entities (Added 17th May 2012)
-- -----------------------------------------------------
UPDATE tnetwork_component SET name = REPLACE(name,' ','&#x20;');
UPDATE tlocal_component SET name = REPLACE(name,' ','&#x20;');

View File

@ -218,7 +218,7 @@ switch ($activeTab) {
foreach ($id_agents as $ag) {
$id_module = agents_get_modules($ag,
array('id_agente_modulo'),
array('nombre' => io_safe_input($mod)));
array('nombre' => $mod));
if (empty($id_module))
continue;