From 91f547b6f44c045cd7d365bf998848e1b32e5d89 Mon Sep 17 00:00:00 2001 From: samucarc Date: Mon, 21 Jan 2019 18:11:12 +0100 Subject: [PATCH] Save password option disabled if Fallback is enabled Former-commit-id: 5ed747ab6e22478a46102104095f5d2d1ba32deb --- pandora_console/godmode/setup/setup_auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/setup/setup_auth.php b/pandora_console/godmode/setup/setup_auth.php index 3adf8adf8a..437756cc93 100644 --- a/pandora_console/godmode/setup/setup_auth.php +++ b/pandora_console/godmode/setup/setup_auth.php @@ -47,7 +47,7 @@ if (is_ajax ()) { // Fallback to local authentication $row = array(); $row['name'] = __('Fallback to local authentication') - . ui_print_help_tip(__("Enable this option if you want to fallback to local authentication when remote (ldap etc...) authentication failed."), true); + . ui_print_help_tip(__("Enable this option if you want to fallback to local authentication when remote (ldap etc...) authentication failed. Only available when 'Save password' is enabled."), true); $row['control'] = __('Yes').' '.html_print_radio_button('fallback_local_auth', 1, '', $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;