summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-10-30 09:17:36 +0000
committeralecpl <alec@alec.pl>2008-10-30 09:17:36 +0000
commitd2993ee4db2ad20b2feebb04060acbe15d890cda (patch)
tree75335dbe150e2ec14892f71f499878a0ca5f40dd /index.php
parentd245963846993a5ab5ac0572f7e988f0865c678e (diff)
- added BYE response simple support to prevent from endless loops in imap.inc (#1483956)
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index a080ef585..92223d22f 100644
--- a/index.php
+++ b/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();
}
}