mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-20 09:09:05 +01:00
doc: add upgrade note about replacement of authObjectType, authObjectFilter and authObjectTypeAttrPwd parameters
This commit is contained in:
parent
c014e235e8
commit
80cdd7a789
1 changed files with 18 additions and 0 deletions
|
@ -72,6 +72,24 @@ sur votre configuration et votre code personnalisé.</para>
|
|||
exemple, <literal>$GLOBALS['defaultCSSfiles']=array('../light-blue.css');</literal> devient <literal>
|
||||
$GLOBALS['defaultCSSfiles']=array('light-blue.css');</literal>.
|
||||
</simpara></listitem>
|
||||
<listitem><para>les paramètres <literal>authObjectType</literal>, <literal>authObjectFilter</literal> et
|
||||
<literal>authObjectTypeAttrPwd</literal> sont remplacés par le tablau <literal>LSobjects</literal> dans le
|
||||
paramètre <literal>LSauth</literal>.</para>
|
||||
<para>Par exemple:
|
||||
<programlisting>'authObjectType' => 'LSpeople',
|
||||
'authObjectFilter' => '(|(uid=%{user})(mail=%{user}))',
|
||||
'authObjectTypeAttrPwd' => 'userPassword',</programlisting>
|
||||
Devient:
|
||||
<programlisting>'LSauth' => array (
|
||||
'LSobjects' => array(
|
||||
'LSpeople' => array(
|
||||
'filter' => '(|(uid=%{user})(mail=%{user}))',
|
||||
'password_attribute' => 'userPassword',
|
||||
),
|
||||
),
|
||||
[...]
|
||||
),</programlisting>
|
||||
</para></listitem>
|
||||
</itemizedlist>
|
||||
</sect2>
|
||||
|
||||
|
|
Loading…
Reference in a new issue