From 93bd73fb818df8c21cf64ee4d1ece791a6e48f81 Mon Sep 17 00:00:00 2001 From: juanmanuelr Date: Wed, 13 Jun 2012 11:17:48 +0000 Subject: [PATCH] 2012-06-13 Juan Manuel Ramon * godmode/agentes/module_manager_editor.php: Fixed strings of link and unlink actions due to bad translation. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6532 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/godmode/agentes/module_manager_editor.php | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 8e8c505d69..fbd6bf4337 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2012-06-13 Juan Manuel Ramon + + * godmode/agentes/module_manager_editor.php: Fixed strings of link + and unlink actions due to bad translation. + 2012-06-13 Juan Manuel Ramon * godmode/alerts/alert_list.builder.php: Fixed creation of alert diff --git a/pandora_console/godmode/agentes/module_manager_editor.php b/pandora_console/godmode/agentes/module_manager_editor.php index c985fd08b1..ac16428b8e 100644 --- a/pandora_console/godmode/agentes/module_manager_editor.php +++ b/pandora_console/godmode/agentes/module_manager_editor.php @@ -259,7 +259,7 @@ if($is_function_policies !== ENTERPRISE_NOT_HOOK) { } else { $result = policies_relink_module($id_agent_module); - ui_print_result_message($result, __('Module relinked to the policy successful')); + ui_print_result_message($result, __('Module will be linked in the next application')); db_pandora_audit("Agent management", "Re-link module " . $id_agent_module); } @@ -267,7 +267,7 @@ if($is_function_policies !== ENTERPRISE_NOT_HOOK) { if($unlink_policy) { $result = policies_unlink_module($id_agent_module); - ui_print_result_message($result, __('Module unlinked from the policy successful')); + ui_print_result_message($result, __('Module will be unlinked in the next application')); db_pandora_audit("Agent management", "Unlink module " . $id_agent_module); }