diff options
author | kondou <kondou@ts.unde.re> | 2013-07-02 03:16:42 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-07-02 03:16:42 +0200 |
commit | 2c4a9e0776ed3f2ce40cb5e4335df5ffaacde9a2 (patch) | |
tree | 068cc9ed9088e64d12e650918d6ac7afe83a5431 /apps/files_sharing/public.php | |
parent | fbdf46b76e0162261be4a7c9e5a71868a331f4d8 (diff) | |
download | nextcloud-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/files_sharing/public.php')
-rw-r--r-- | apps/files_sharing/public.php | 2 |
1 files changed, 1 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 { |