aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-02-26 22:21:00 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2014-02-26 22:21:00 +0100
commit9e59e64c793488ea3db8a61ac9e5978426878668 (patch)
treebe690858518bddf3fe3e4f42be4dda3413edc50c
parentd4f15853e85fbf7e3dddd5332c5012d20a20a1bf (diff)
parent6c5cc4638008d08f4f933db775348fe9d1db57f9 (diff)
downloadnextcloud-server-9e59e64c793488ea3db8a61ac9e5978426878668.tar.gz
nextcloud-server-9e59e64c793488ea3db8a61ac9e5978426878668.zip
Merge pull request #7421 from owncloud/password-input
disable autocomplete for shared link password input, fix #7419
-rw-r--r--apps/files_sharing/templates/authenticate.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php
index 928be93fc96..19b1fb27630 100644
--- a/apps/files_sharing/templates/authenticate.php
+++ b/apps/files_sharing/templates/authenticate.php
@@ -8,7 +8,10 @@
<?php endif; ?>
<p class="infield">
<label for="password" class="infield"><?php p($l->t('Password')); ?></label>
- <input type="password" name="password" id="password" placeholder="" value="" autofocus />
+ <input type="password" name="password" id="password"
+ placeholder="" value=""
+ autocomplete="off" autocapitalize="off" autocorrect="off"
+ autofocus />
<input type="submit" value="" class="svg icon icon-confirm" />
</p>
</fieldset>