simplesamlphp_auth.module: enabled local authentification by default

This commit is contained in:
Jérôme Schneider 2015-01-27 11:10:17 +01:00
parent 2105734c85
commit e4fa819652
1 changed files with 1 additions and 1 deletions

View File

@ -593,7 +593,7 @@ function simplesamlphp_auth_settings() {
$form['simplesamlphp_auth_grp_auth']['simplesamlphp_auth_allowdefaultlogin'] = array(
'#type' => 'checkbox',
'#title' => t('Allow authentication with local Drupal accounts'),
'#default_value' => variable_get('simplesamlphp_auth_allowdefaultlogin', FALSE),
'#default_value' => variable_get('simplesamlphp_auth_allowdefaultlogin', TRUE),
'#description' => t('Check this box if you want to let people log in with local Drupal accounts (without using simpleSAMLphp). If you want to restrict this privilege to certain users you can enter the Drupal user IDs in the field below.'),
);
$form['simplesamlphp_auth_grp_auth']['simplesamlphp_auth_allowdefaultloginroles'] = array(