diff options
author | till <till@php.net> | 2007-09-01 18:57:55 +0000 |
---|---|---|
committer | till <till@php.net> | 2007-09-01 18:57:55 +0000 |
commit | a664a679ca6471c00f6d225841e1ef4d16261146 (patch) | |
tree | 4da0f81525e905972b0870f2983ac0537bac9fe3 /program | |
parent | c1f160203e56c0d5059994981bc8383af43b9b7f (diff) |
# bugfix: #1484473
Diffstat (limited to 'program')
-rw-r--r-- | program/include/main.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/program/include/main.inc b/program/include/main.inc index bd4ebd0ef..ccbc57958 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -532,6 +532,7 @@ function rcmail_login($user, $pass, $host=NULL) { global $CONFIG, $IMAP, $DB, $sess_user_lang; $user_id = NULL; + $user = strtolower($user); // fix case: #1484473 if (!$host) $host = $CONFIG['default_host']; |