summaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2015-02-08 14:03:57 +0100
committerLukas Reschke <lukas@owncloud.com>2015-02-08 14:03:57 +0100
commitf167c3d9f6105c6baaa9bcb530ee6f32f7b96e4b (patch)
tree8541f2253ffa001f9984eac0e7e3434e17e067a9 /settings/templates
parent60e771685e122225c23907f66867ceb76d2edc49 (diff)
parent40244c9eef0a0c170a77b66052fc3cae01519eb9 (diff)
downloadnextcloud-server-f167c3d9f6105c6baaa9bcb530ee6f32f7b96e4b.tar.gz
nextcloud-server-f167c3d9f6105c6baaa9bcb530ee6f32f7b96e4b.zip
Merge pull request #13895 from owncloud/disable-autocomplete-1
Disable autocomplete for SMTP Password
Diffstat (limited to 'settings/templates')
-rw-r--r--settings/templates/admin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index fb4662b5476..cd26d64aa03 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -460,7 +460,7 @@ if ($_['suggestedOverwriteCliUrl']) {
<label for="mail_smtpname"><?php p($l->t( 'Credentials' )); ?></label>
<input type="text" name='mail_smtpname' id="mail_smtpname" placeholder="<?php p($l->t('SMTP Username'))?>"
value='<?php p($_['mail_smtpname']) ?>' />
- <input type="password" name='mail_smtppassword' id="mail_smtppassword"
+ <input type="password" name='mail_smtppassword' id="mail_smtppassword" autocomplete="off"
placeholder="<?php p($l->t('SMTP Password'))?>" value='<?php p($_['mail_smtppassword']) ?>' />
<input id="mail_credentials_settings_submit" type="button" value="<?php p($l->t('Store credentials')) ?>">
</p>