diff options
author | Grigorii K. Shartsev <me@shgk.me> | 2023-10-19 12:04:20 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-10-20 00:35:51 +0200 |
commit | 2d6cd78c3299fe343637f08d780ecb2646b33172 (patch) | |
tree | 2a5f99b9c251d6511a72deaf07b2b0303a3e2e13 /core/templates/publicshareauth.php | |
parent | a6c450b481e439e23be166c84c6fcda45a6a2ebb (diff) | |
download | nextcloud-server-2d6cd78c3299fe343637f08d780ecb2646b33172.tar.gz nextcloud-server-2d6cd78c3299fe343637f08d780ecb2646b33172.zip |
fix: replace non-standard autocorrect with spellcheck attribute
`autocorrect` was actual for Safari long time ago when Safari didn't fully supported HTML 5 spellcheck.
Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
Diffstat (limited to 'core/templates/publicshareauth.php')
-rw-r--r-- | core/templates/publicshareauth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/publicshareauth.php b/core/templates/publicshareauth.php index 516795852b2..c3089a2e143 100644 --- a/core/templates/publicshareauth.php +++ b/core/templates/publicshareauth.php @@ -25,7 +25,7 @@ <input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>" /> <input type="password" name="password" id="password" placeholder="<?php p($l->t('Password')); ?>" value="" - autocomplete="new-password" autocapitalize="off" autocorrect="off" + autocomplete="new-password" autocapitalize="off" spellcheck="false" autofocus /> <input type="hidden" name="sharingToken" value="<?php p($_['share']->getToken()) ?>" id="sharingToken"> <input type="hidden" name="sharingType" value="<?php p($_['share']->getShareType()) ?>" id="sharingType"> |