2014-06-02 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/visual_console_builder.editor.js: fixed the default height for the visualmap editor. Incident: #823 * godmode/servers/manage_recontask_form.php: fixed PHP warning. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10075 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
da276cb4ef
commit
8e89441d59
|
@ -1,3 +1,12 @@
|
|||
2014-06-02 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/reporting/visual_console_builder.editor.js: fixed the
|
||||
default height for the visualmap editor.
|
||||
|
||||
Incident: #823
|
||||
|
||||
* godmode/servers/manage_recontask_form.php: fixed PHP warning.
|
||||
|
||||
2014-06-02 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* include/styles/pandora.css: Change the zindex of autohidden
|
||||
|
|
|
@ -70,6 +70,9 @@ function visual_map_main() {
|
|||
}
|
||||
}
|
||||
});
|
||||
|
||||
//Resize the view to adapt the screen size.
|
||||
$("#frame_view").height($("#main").height() - 75);
|
||||
}
|
||||
|
||||
function cancel_button_palette_callback() {
|
||||
|
|
|
@ -214,10 +214,12 @@ $table->data[5][1] = html_print_select_from_sql ('SELECT id_np, name FROM tnetwo
|
|||
"id_network_profile", $id_network_profile, '', __('None'), 0, true);
|
||||
|
||||
// Recon script
|
||||
$data[1] = '';
|
||||
$table->data[6][0] = "<b>".__('Recon script');
|
||||
$table->data[6][1] = html_print_select_from_sql ('SELECT id_recon_script, name FROM trecon_script',
|
||||
"id_recon_script", $id_recon_script, 'get_explanation_recon_script($(\'#id_recon_script\').val())', '', '', true);
|
||||
$table->data[6][1] .= $data[1] .= html_print_input_hidden('macros',base64_encode($macros),true);
|
||||
$table->data[6][1] .= $data[1] .= html_print_input_hidden('macros',
|
||||
base64_encode($macros),true);
|
||||
|
||||
|
||||
// OS
|
||||
|
|
Loading…
Reference in New Issue