diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2013-12-12 14:04:10 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2013-12-12 14:15:39 +0100 |
commit | 5ba9344b0ef50f1e312454067486eeceeead565c (patch) | |
tree | a79c7b940e214437562ec7b651884f30355a02ed | |
parent | 7b20212c0a325e25a2dd8a70fc4ddb78a7d80855 (diff) | |
download | nextcloud-server-5ba9344b0ef50f1e312454067486eeceeead565c.tar.gz nextcloud-server-5ba9344b0ef50f1e312454067486eeceeead565c.zip |
LDAP: the browser shall not autofill userdn and password, usually login credentials are inserted. fixes #6283
-rw-r--r-- | apps/user_ldap/templates/part.wizard-server.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/templates/part.wizard-server.php b/apps/user_ldap/templates/part.wizard-server.php index fde7c36cdd1..0312c17ab7b 100644 --- a/apps/user_ldap/templates/part.wizard-server.php +++ b/apps/user_ldap/templates/part.wizard-server.php @@ -41,7 +41,7 @@ <div class="tablerow"> <input type="text" id="ldap_dn" name="ldap_dn" class="tablecell lwautosave" - placeholder="<?php p($l->t('User DN'));?>" + placeholder="<?php p($l->t('User DN'));?>" autocomplete="off" title="<?php p($l->t('The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty.'));?>" /> </div> @@ -49,7 +49,7 @@ <div class="tablerow"> <input type="password" id="ldap_agent_password" class="tablecell lwautosave" name="ldap_agent_password" - placeholder="<?php p($l->t('Password'));?>" + placeholder="<?php p($l->t('Password'));?>" autocomplete="off" title="<?php p($l->t('For anonymous access, leave DN and Password empty.'));?>" /> </div> |