2011-09-28 Sergio Martin <sergio.martin@artica.es>

* godmode/setup/setup_auth.php: Fixed LDAP jquery problem
	in spanish translation for bug 3411881. Improved to
	charge the fields first time page is loaded



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5020 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2011-09-28 16:46:06 +00:00
parent a96e0b1988
commit 0d99b931c8
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2011-09-28 Sergio Martin <sergio.martin@artica.es>
* godmode/setup/setup_auth.php: Fixed LDAP jquery problem
in spanish translation for bug 3411881. Improved to
charge the fields first time page is loaded
2011-09-28 Sergio Martin <sergio.martin@artica.es>
* include/functions_graph.php: Fixed graphs engine to fix

View File

@ -37,7 +37,7 @@ $table->width = '98%';
$table->size[0] = '30%';
$table->data[0][0] = __('Authentication method');
$auth_methods = array ('mysql' => __('Local Pandora FMS'), __('ldap') => 'LDAP');
$auth_methods = array ('mysql' => __('Local Pandora FMS'), 'ldap' => __('ldap'));
enterprise_hook ('add_enterprise_auth_methods', array (&$auth_methods));
$table->data[0][1] = html_print_select ($auth_methods, 'auth', $config['auth'], 'show_selected_rows ();', '', 0, true);
@ -124,4 +124,6 @@ echo '</form>';
$("#text-autocreate_blacklist").attr("disabled", false);
}
}
show_selected_rows();
</script>