diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index cd4f469886..1996735ae9 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2009-11-03 Miguel de Dios + * godmode/agentes/module_manager_editor_plugin.php: fix the size of field + "Plugin parameters". + Fixes: 2888996 + 2009-11-03 Miguel de Dios * godmode/users/configure_user.php: fix to set the admin user when you create new user. diff --git a/pandora_console/godmode/agentes/module_manager_editor_plugin.php b/pandora_console/godmode/agentes/module_manager_editor_plugin.php index c1cdbfc47e..71b9674f83 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_plugin.php +++ b/pandora_console/godmode/agentes/module_manager_editor_plugin.php @@ -51,7 +51,7 @@ push_table_simple ($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, '', 255, 255, true); $table_simple->colspan['plugin_3'][1] = 3; push_table_simple ($data, 'plugin_3');