added option to follow referrals

This commit is contained in:
Roland Gruber 2014-10-26 09:33:43 +00:00
parent c2fe307059
commit e19ed3bfa4
3 changed files with 11 additions and 0 deletions

View File

@ -6701,6 +6701,14 @@ OK (10 msec)</programlisting>
name + password, email + password or other attributes.</entry>
</row>
<row>
<entry>Follow referrals</entry>
<entry>By default LAM will not follow LDAP referrals. This is
ok for most installations. If you use LDAP referrals please
activate the referral option in advanced settings.</entry>
</row>
<row>
<entry>LDAP user + password</entry>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 73 KiB

View File

@ -362,6 +362,8 @@ class selfServiceProfile {
public $language = 'en_GB.utf8';
/** disallow user to change language */
public $enforceLanguage = false;
public $followReferrals = 0;
/**
* Constructor
@ -398,6 +400,7 @@ class selfServiceProfile {
$this->moduleSettings = array();
$this->language = 'en_GB.utf8';
$this->enforceLanguage = true;
$this->followReferrals = 0;
}
}