diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-08-09 01:35:02 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-08-09 22:06:08 +0200 |
commit | b3e2f6b45796ceca5fd8d74f662d34d9cafb0f43 (patch) | |
tree | 0b4474d11fbe3c36471f962e1c1db7f4d1edc035 /core/templates | |
parent | db117bd4686d21323d7e593ae08fdacd1373bc3d (diff) | |
download | nextcloud-server-b3e2f6b45796ceca5fd8d74f662d34d9cafb0f43.tar.gz nextcloud-server-b3e2f6b45796ceca5fd8d74f662d34d9cafb0f43.zip |
remove confusing 'automatic logon rejected' message, fix #8591
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/login.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/core/templates/login.php b/core/templates/login.php index 951ba3b4f6b..819010c5485 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -6,14 +6,6 @@ <?php if (!empty($_['redirect_url'])) { print_unescaped('<input type="hidden" name="redirect_url" value="' . OC_Util::sanitizeHTML($_['redirect_url']) . '" />'); } ?> - <?php if (isset($_['invalidcookie']) && ($_['invalidcookie'])): ?> - <div class="warning"> - <?php p($l->t('Automatic logon rejected!')); ?><br> - <small><?php p($l->t('If you did not change your password recently, your account may be compromised!')); ?></small> - <br> - <small><?php p($l->t('Please change your password to secure your account again.')); ?></small> - </div> - <?php endif; ?> <?php if (isset($_['apacheauthfailed']) && ($_['apacheauthfailed'])): ?> <div class="warning"> <?php p($l->t('Server side authentication failed!')); ?><br> |