diff options
author | alecpl <alec@alec.pl> | 2010-11-09 13:21:02 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-11-09 13:21:02 +0000 |
commit | 6d99f995766d32e6074201b847adf3ce7e5b0dbf (patch) | |
tree | c1b1a629b243efa868e8e42588866a67ec13674e /index.php | |
parent | ad5881162d1a06b18c045cf2c81826f2d1be1b1e (diff) |
- Handle situation when $IMAP object isn't initialized on log in
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -118,9 +118,11 @@ if ($RCMAIL->task == 'login' && $RCMAIL->action == 'login') { $OUTPUT->redirect($redir); } else { - $OUTPUT->show_message($IMAP->get_error_code() < -1 ? 'imaperror' : 'loginfailed', 'warning'); + $error_code = is_object($IMAP) ? $IMAP->get_error_code() : -1; + + $OUTPUT->show_message($error_code < -1 ? 'imaperror' : 'loginfailed', 'warning'); $RCMAIL->plugins->exec_hook('login_failed', array( - 'code' => $IMAP->get_error_code(), 'host' => $auth['host'], 'user' => $auth['user'])); + 'code' => $error_code, 'host' => $auth['host'], 'user' => $auth['user'])); $RCMAIL->kill_session(); } } |