diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 0789fe2af4..0fd06be941 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2009-11-19 Miguel de Dios + + * godmode/modules/manage_network_components_form_plugin.php: tiny fix in the + size of field "plugin_parameter". + 2009-11-18 Miguel de Dios * operation/agentes/exportdata.php: change "search_agents" in the ajax, now diff --git a/pandora_console/godmode/modules/manage_network_components_form_plugin.php b/pandora_console/godmode/modules/manage_network_components_form_plugin.php index 6ee55f4161..9b2f7ba6fb 100644 --- a/pandora_console/godmode/modules/manage_network_components_form_plugin.php +++ b/pandora_console/godmode/modules/manage_network_components_form_plugin.php @@ -41,7 +41,7 @@ push_table_row ($data, 'plugin_2'); $data = array (); $data[0] = __('Plugin parameters'); $data[0] .= print_help_icon ('plugin_parameters', true); -$data[1] = print_input_text ('plugin_parameter', $plugin_parameter, '', 30, 60, true); +$data[1] = print_input_text ('plugin_parameter', $plugin_parameter, '', 30, 255, true); $table->colspan['plugin_3'][1] = 3; push_table_row ($data, 'plugin_3');