Commit 8bbc1cf4366c286045a0a6a0f065d8b1d2790e6d
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
Showing
1 changed file
with
1 additions
and
3 deletions
templates/ktstandard/authentication/ldapsearchuser.smarty
| @@ -28,7 +28,6 @@ begin.{/i18n}</p> | @@ -28,7 +28,6 @@ begin.{/i18n}</p> | ||
| 28 | <thead> | 28 | <thead> |
| 29 | <tr> | 29 | <tr> |
| 30 | <th>{i18n}Name{/i18n}</th> | 30 | <th>{i18n}Name{/i18n}</th> |
| 31 | - <th>{i18n}LDAP User Name{/i18n}</th> | ||
| 32 | <th>{i18n}Distinguished Name (LDAP DN){/i18n}</th> | 31 | <th>{i18n}Distinguished Name (LDAP DN){/i18n}</th> |
| 33 | </tr> | 32 | </tr> |
| 34 | </thead> | 33 | </thead> |
| @@ -37,8 +36,7 @@ begin.{/i18n}</p> | @@ -37,8 +36,7 @@ begin.{/i18n}</p> | ||
| 37 | {foreach item=potential_user from=$search_results} | 36 | {foreach item=potential_user from=$search_results} |
| 38 | <tr> | 37 | <tr> |
| 39 | <td><input type="radio" name="id" | 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 | <td>{$potential_user.dn}</td> | 40 | <td>{$potential_user.dn}</td> |
| 43 | </tr> | 41 | </tr> |
| 44 | {/foreach} | 42 | {/foreach} |