summaryrefslogtreecommitdiff
path: root/roundcubemail/index.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-10-30 09:17:36 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-10-30 09:17:36 +0000
commit5bb2b28dcd0c4c95b71217508c4d1e3ca663fdb1 (patch)
treebe45cbc0064f9caa3d0420819b89d6c649a05be2 /roundcubemail/index.php
parent94320a2f818ae9108262cb35bf64bee147360aab (diff)
- added BYE response simple support to prevent from endless loops in imap.inc (#1483956)
git-svn-id: https://svn.roundcube.net/trunk@2026 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/index.php')
-rw-r--r--roundcubemail/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/index.php b/roundcubemail/index.php
index a080ef585..92223d22f 100644
--- a/roundcubemail/index.php
+++ b/roundcubemail/index.php
@@ -100,7 +100,7 @@ if ($RCMAIL->action=='login' && $RCMAIL->task=='mail') {
$OUTPUT->redirect();
}
else {
- $OUTPUT->show_message($IMAP->error_code == -1 ? 'imaperror' : 'loginfailed', 'warning');
+ $OUTPUT->show_message($IMAP->error_code == -1 ? 'loginfailed' : 'imaperror', 'warning');
$RCMAIL->kill_session();
}
}