summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorkondou <kondou@ts.unde.re>2013-07-02 03:16:42 +0200
committerkondou <kondou@ts.unde.re>2013-07-02 03:16:42 +0200
commit2c4a9e0776ed3f2ce40cb5e4335df5ffaacde9a2 (patch)
tree068cc9ed9088e64d12e650918d6ac7afe83a5431 /apps
parentfbdf46b76e0162261be4a7c9e5a71868a331f4d8 (diff)
downloadnextcloud-server-2c4a9e0776ed3f2ce40cb5e4335df5ffaacde9a2.tar.gz
nextcloud-server-2c4a9e0776ed3f2ce40cb5e4335df5ffaacde9a2.zip
Add a "Wrong password." message, if the password
for the public share was wrong. Fix #2725
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/public.php2
-rw-r--r--apps/files_sharing/templates/authenticate.php3
2 files changed, 4 insertions, 1 deletions
diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php
index ef86013b3e7..fb18bc26248 100644
--- a/apps/files_sharing/public.php
+++ b/apps/files_sharing/public.php
@@ -79,7 +79,7 @@ if (isset($path)) {
$linkItem['share_with']))) {
$tmpl = new OCP\Template('files_sharing', 'authenticate', 'guest');
$tmpl->assign('URL', $url);
- $tmpl->assign('error', true);
+ $tmpl->assign('wrongpw', true);
$tmpl->printPage();
exit();
} else {
diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php
index 7a67b6e5503..9334861b1ce 100644
--- a/apps/files_sharing/templates/authenticate.php
+++ b/apps/files_sharing/templates/authenticate.php
@@ -1,5 +1,8 @@
<form action="<?php p($_['URL']); ?>" method="post">
<fieldset>
+ <?php if ($_['wrongpw']): ?>
+ <div class="warning"><?php p($l->t('Wrong password.')); ?></div>
+ <?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 />