Commit 8bbc1cf4366c286045a0a6a0f065d8b1d2790e6d

Authored by nbm
1 parent c38b2d41

Use the LDAP DN as the identifier key, and don't show the username, just

the full name.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4836 c91229c3-7414-0410-bfa2-8a42b809f60b
templates/ktstandard/authentication/ldapsearchuser.smarty
... ... @@ -28,7 +28,6 @@ begin.{/i18n}</p>
28 28 <thead>
29 29 <tr>
30 30 <th>{i18n}Name{/i18n}</th>
31   - <th>{i18n}LDAP User Name{/i18n}</th>
32 31 <th>{i18n}Distinguished Name (LDAP DN){/i18n}</th>
33 32 </tr>
34 33 </thead>
... ... @@ -37,8 +36,7 @@ begin.{/i18n}&lt;/p&gt;
37 36 {foreach item=potential_user from=$search_results}
38 37 <tr>
39 38 <td><input type="radio" name="id"
40   -value="{$potential_user.$identifier_field}" />{$potential_user.cn}</td>
41   - <td>{$potential_user.$identifier_field}</td>
  39 +value="{$potential_user.dn}" />{$potential_user.cn}</td>
42 40 <td>{$potential_user.dn}</td>
43 41 </tr>
44 42 {/foreach}
... ...