diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 1071a74d69..3554abf5ed 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2013-08-26 Miguel de Dios + + * godmode/agentes/module_manager_editor.php, + godmode/agentes/module_manager_editor_common.php: fixed PHP + warnings. + 2013-08-23 Miguel de Dios * godmode/agentes/module_manager_editor_common.php: fixed the PHP diff --git a/pandora_console/godmode/agentes/module_manager_editor.php b/pandora_console/godmode/agentes/module_manager_editor.php index 9cf68adb50..692260fc5e 100644 --- a/pandora_console/godmode/agentes/module_manager_editor.php +++ b/pandora_console/godmode/agentes/module_manager_editor.php @@ -338,7 +338,7 @@ switch ($moduletype) { $remote_conf = false; if (enterprise_installed()) { enterprise_include_once('include/functions_config_agents.php'); - $remote_conf = enterprise_hook('config_agents_has_remote_configuration', $id_agente); + $remote_conf = config_agents_has_remote_configuration($id_agente); } /* Categories is an array containing the allowed module types diff --git a/pandora_console/godmode/agentes/module_manager_editor_common.php b/pandora_console/godmode/agentes/module_manager_editor_common.php index 1f07a3174f..934f89261e 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_common.php +++ b/pandora_console/godmode/agentes/module_manager_editor_common.php @@ -331,7 +331,7 @@ $table_advanced->data[3][1] = html_print_input_text ('min', $min, '', 5, 15, tru $table_advanced->data[3][3] = __('Max. Value'); $table_advanced->data[3][4] = html_print_input_text ('max', $max, '', 5, 15, true, $disabledBecauseInPolicy). ' ' . ui_print_help_tip (__('Any value over this number is discarted.'), true); -$table_advanced->data[4][0] = __('Export target'); +$table_advanced->data[4][0] = __('Export target'); // Default text message for export target select and disabled option $none_text = __('None'); $disabled_export = false;