summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorThomas Bruederli <bruederli@kolabsys.com>2014-10-14 21:47:15 +0200
committerThomas Bruederli <bruederli@kolabsys.com>2014-10-14 21:47:15 +0200
commitc45507e317bfc5310005d651a3818b2669541fba (patch)
tree18e357caeb39e6be0194296f3d8fd406079496d6 /index.php
parentb51de3279f579f53069a1aee49686102bce81166 (diff)
Fix login error message display broken in b51de327
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 04362ef16..5ca2af608 100644
--- a/index.php
+++ b/index.php
@@ -157,7 +157,7 @@ if ($RCMAIL->task == 'login' && $RCMAIL->action == 'login') {
RCMAIL::ERROR_INVALID_HOST => 'invalidhost',
);
- $error_message = !is_numeric($auth['error']) ? $auth['error'] : ($error_labels[$error_code] ?: 'loginfailed');
+ $error_message = !empty($auth['error']) && !is_numeric($auth['error']) ? $auth['error'] : ($error_labels[$error_code] ?: 'loginfailed');
$OUTPUT->show_message($error_message, 'warning');