diff options
author | runky <philipp.boersteken@googlemail.com> | 2013-07-05 10:37:24 +0200 |
---|---|---|
committer | runky <philipp.boersteken@googlemail.com> | 2013-07-05 10:37:24 +0200 |
commit | 6c868a9b5c959809713b041113b02313e010dfd5 (patch) | |
tree | 6d11d5a8e75f0472d79dd3e8cd8dbdf8e315b0b1 /apps | |
parent | 83898e87be3486ecec76ee240a8810ce693be888 (diff) | |
download | nextcloud-server-6c868a9b5c959809713b041113b02313e010dfd5.tar.gz nextcloud-server-6c868a9b5c959809713b041113b02313e010dfd5.zip |
Update authenticate.php
Fix 'Undefined index: wrongpw' error
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/templates/authenticate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index fa03f419130..2c89b5df3f6 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -1,6 +1,6 @@ <form action="<?php p($_['URL']); ?>" method="post"> <fieldset> - <?php if ($_['wrongpw']): ?> + <?php if (isset($_['wrongpw'])): ?> <div class="warning"><?php p($l->t('The password is wrong. Try again.')); ?></div> <?php endif; ?> <p class="infield"> |