diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2014-07-18 00:54:21 +0200 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2014-07-18 00:54:21 +0200 |
| commit | 1a66ad8483cf1ee8cd9630b069dc1020ea9df9ca (patch) | |
| tree | 9249171369337152d5fa1d8afb0506788ce08bf0 | |
| parent | 42477861a45935b10285a1434f4ffaf5b199c5c2 (diff) | |
| parent | 81905158a14fee6148764a2745f6d7236c1be3c4 (diff) | |
| download | forums-1a66ad8483cf1ee8cd9630b069dc1020ea9df9ca.tar forums-1a66ad8483cf1ee8cd9630b069dc1020ea9df9ca.tar.gz forums-1a66ad8483cf1ee8cd9630b069dc1020ea9df9ca.tar.bz2 forums-1a66ad8483cf1ee8cd9630b069dc1020ea9df9ca.tar.xz forums-1a66ad8483cf1ee8cd9630b069dc1020ea9df9ca.zip | |
Merge pull request #2735 from carlo94it/ticket/12814
[ticket/12814] Fix field type for LDAP email attribute
* carlo94it/ticket/12814:
[ticket/12814] Replace email type with text type
| -rw-r--r-- | phpBB/adm/style/auth_provider_ldap.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/adm/style/auth_provider_ldap.html b/phpBB/adm/style/auth_provider_ldap.html index 9e0567dfed..97684db396 100644 --- a/phpBB/adm/style/auth_provider_ldap.html +++ b/phpBB/adm/style/auth_provider_ldap.html @@ -22,7 +22,7 @@ </dl> <dl> <dt><label for="ldap_email">{L_LDAP_EMAIL}{L_COLON}</label><br /><span>{L_LDAP_EMAIL_EXPLAIN}</span></dt> - <dd><input type="email" id="ldap_email" size="40" name="config[ldap_email]" value="{AUTH_LDAP_EMAIL}" /></dd> + <dd><input type="text" id="ldap_email" size="40" name="config[ldap_email]" value="{AUTH_LDAP_EMAIL}" /></dd> </dl> <dl> <dt><label for="ldap_user">{L_LDAP_USER}{L_COLON}</label><br /><span>{L_LDAP_USER_EXPLAIN}</span></dt> |
