diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 20bd0d7fe2..6e2da18444 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2010-04-26 Junichi Satoh + + * godmode/agentes/module_manager_editor_plugin.php, + godmode/agentes/module_manager_editor_wmi.php, + godmode/agentes/module_manager_editor_network.php: Added missing '_'. + 2010-04-23 Sancho Lerena * include/config_process.php: Fixed a doble include in the diff --git a/pandora_console/godmode/agentes/module_manager_editor_network.php b/pandora_console/godmode/agentes/module_manager_editor_network.php index a18c50cb7f..a93749d740 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_network.php +++ b/pandora_console/godmode/agentes/module_manager_editor_network.php @@ -41,7 +41,7 @@ $extra_title = __('Network server module'); $data = array (); $data[0] = __('Target IP'); $data[1] = print_input_text ('ip_target', $ip_target, '', 15, 60, true); -$data[2] = _('Port'); +$data[2] = __('Port'); $data[3] = print_input_text ('tcp_port', $tcp_port, '', 5, 20, true, $disabledBecauseInPolicy); push_table_simple ($data, 'target_ip'); diff --git a/pandora_console/godmode/agentes/module_manager_editor_plugin.php b/pandora_console/godmode/agentes/module_manager_editor_plugin.php index f73bb220e9..4ee4e71fce 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_plugin.php +++ b/pandora_console/godmode/agentes/module_manager_editor_plugin.php @@ -49,7 +49,7 @@ push_table_simple ($data, 'plugin_1'); $data = array (); $data[0] = __('Target IP'); $data[1] = print_input_text ('ip_target', $ip_target, '', 15, 60, true); -$data[2] = _('Port'); +$data[2] = __('Port'); $data[3] = print_input_text ('tcp_port', $tcp_port, '', 5, 20, true); push_table_simple ($data, 'target_ip'); @@ -57,7 +57,7 @@ push_table_simple ($data, 'target_ip'); $data = array (); $data[0] = __('Username'); $data[1] = print_input_text ('plugin_user', $plugin_user, '', 15, 60, true); -$data[2] = _('Password'); +$data[2] = __('Password'); $data[3] = print_input_password ('plugin_pass', $plugin_pass, '', 15, 60, true); push_table_simple ($data, 'plugin_2'); diff --git a/pandora_console/godmode/agentes/module_manager_editor_wmi.php b/pandora_console/godmode/agentes/module_manager_editor_wmi.php index 28c1d53a4e..633e50ed22 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_wmi.php +++ b/pandora_console/godmode/agentes/module_manager_editor_wmi.php @@ -49,7 +49,7 @@ push_table_simple ($data, 'target_ip'); $data = array (); $data[0] = __('Username'); $data[1] = print_input_text ('plugin_user', $plugin_user, '', 15, 60, true); -$data[2] = _('Password'); +$data[2] = __('Password'); $data[3] = print_input_password ('plugin_pass', $plugin_pass, '', 15, 60, true); push_table_simple ($data, 'user_pass');