diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2022-06-11 00:32:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-11 00:32:32 +0200 |
commit | e2c213a4269244d1656c05fc3eb4fee4f32a4f21 (patch) | |
tree | 7c7df324aef534016fde0c0ca1860f78c367d02f /core | |
parent | 0cbfae6c37724b7d67e986f4018fb91167cc5c3f (diff) | |
parent | bef2960abfd633a4f8e18bbf14508e383bd76c53 (diff) | |
download | nextcloud-server-e2c213a4269244d1656c05fc3eb4fee4f32a4f21.tar.gz nextcloud-server-e2c213a4269244d1656c05fc3eb4fee4f32a4f21.zip |
Merge pull request #32683 from nextcloud/backport/32371/stable24
[stable24] More meaningfull message when a public authenticated share's password is wrong or has expired.
Diffstat (limited to 'core')
-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 03b534f53da..449216bb6f6 100644 --- a/core/templates/publicshareauth.php +++ b/core/templates/publicshareauth.php @@ -17,7 +17,7 @@ <div class="warning-info"><?php p($l->t('This share is password-protected')); ?></div> <?php endif; ?> <?php if (isset($_['wrongpw'])): ?> - <div class="warning"><?php p($l->t('The password is wrong. Try again.')); ?></div> + <div class="warning wrongPasswordMsg"><?php p($l->t('The password is wrong or expired. Please try again or request a new one.')); ?></div> <?php endif; ?> <p> <label for="password" class="infield"><?php p($l->t('Password')); ?></label> |