2013-08-26 Miguel de Dios <miguel.dedios@artica.es>

* godmode/agentes/module_manager_editor.php,
	godmode/agentes/module_manager_editor_common.php: fixed PHP
	warnings.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8695 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2013-08-26 07:17:43 +00:00
parent 05cb44b7ae
commit f52ce3d71d
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2013-08-26 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor.php,
godmode/agentes/module_manager_editor_common.php: fixed PHP
warnings.
2013-08-23 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_common.php: fixed the PHP

View File

@ -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

View File

@ -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;