2010-05-14 Sergio Martin <sergio.martin@artica.es>
* godmode/reporting/visual_console_builder.php: Fixed the adding at visual map only the agent if module is no selected and only the module if is selected. Bug: 2989339 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2729 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
b8efb9d0e1
commit
cb392f83bd
|
@ -1,3 +1,10 @@
|
||||||
|
2010-05-14 Sergio Martin <sergio.martin@artica.es>
|
||||||
|
|
||||||
|
* godmode/reporting/visual_console_builder.php: Fixed
|
||||||
|
the adding at visual map only the agent if module is
|
||||||
|
no selected and only the module if is selected.
|
||||||
|
Bug: 2989339
|
||||||
|
|
||||||
2010-05-14 Miguel de Dios <miguel.dedios@artica.es>
|
2010-05-14 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* godmode/gis_maps/configure_gis_map.php: fixed the title of button to
|
* godmode/gis_maps/configure_gis_map.php: fixed the title of button to
|
||||||
|
|
|
@ -142,10 +142,10 @@ switch ($activeTab) {
|
||||||
$width = (int) get_parameter ("width", 0);
|
$width = (int) get_parameter ("width", 0);
|
||||||
$height = (int) get_parameter ("height", 0);
|
$height = (int) get_parameter ("height", 0);
|
||||||
$message = '';
|
$message = '';
|
||||||
$message = process_wizard_add ($id_agents, $image, $idVisualConsole, $range, $width, $height);
|
if ($id_modules[0] == 0)
|
||||||
if (!empty ($id_modules)) {
|
$message .= process_wizard_add ($id_agents, $image, $idVisualConsole, $range, $width, $height);
|
||||||
|
else
|
||||||
$message .= process_wizard_add_modules ($id_modules, $image, $idVisualConsole, $range, $width, $height);
|
$message .= process_wizard_add_modules ($id_modules, $image, $idVisualConsole, $range, $width, $height);
|
||||||
}
|
|
||||||
$statusProcessInDB = array('flag' => true, 'message' => $message);
|
$statusProcessInDB = array('flag' => true, 'message' => $message);
|
||||||
$action = 'edit';
|
$action = 'edit';
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue