Merge branch '1012-Problema-con-configuración-de-LDAP-dev' into 'develop'

Erase functionality

See merge request !613
This commit is contained in:
vgilc 2017-07-13 11:56:17 +02:00
commit 1772cc273b

View File

@ -52,6 +52,7 @@ if (is_ajax ()) {
$row['control'] .= __('No').' '.html_print_radio_button('fallback_local_auth', 0, '', $config['fallback_local_auth'], true); $row['control'] .= __('No').' '.html_print_radio_button('fallback_local_auth', 0, '', $config['fallback_local_auth'], true);
$table->data['fallback_local_auth'] = $row; $table->data['fallback_local_auth'] = $row;
if (enterprise_installed()) {
// Autocreate remote users // Autocreate remote users
$row = array(); $row = array();
$row['name'] = __('Autocreate remote users'); $row['name'] = __('Autocreate remote users');
@ -59,7 +60,6 @@ if (is_ajax ()) {
$row['control'] .= __('No').' '.html_print_radio_button_extended('autocreate_remote_users', 0, '', $config['autocreate_remote_users'], false, '', '', true); $row['control'] .= __('No').' '.html_print_radio_button_extended('autocreate_remote_users', 0, '', $config['autocreate_remote_users'], false, '', '', true);
$table->data['autocreate_remote_users'] = $row; $table->data['autocreate_remote_users'] = $row;
if (enterprise_installed()) {
add_enterprise_auth_autocreate_profiles($table, $type_auth); add_enterprise_auth_autocreate_profiles($table, $type_auth);
} }
} }