diff options
author | thomascube <thomas@roundcube.net> | 2011-01-29 14:55:12 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-01-29 14:55:12 +0000 |
commit | 98cb0f179206843ceaa87df6bfb3d1da045ed8ad (patch) | |
tree | ade6196094997c24b48e8a432383bd2da9f6bc5c /program/include/rcmail.php | |
parent | a32679e69f7d6c265f85015677743272740dcc8e (diff) |
Apply bug fixes and localization updated from trunk for release 0.5.1
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r-- | program/include/rcmail.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index e4078a72f..e9f5b5fce 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -673,9 +673,9 @@ class rcmail // Check if we need to add domain if (!empty($config['username_domain']) && strpos($username, '@') === false) { if (is_array($config['username_domain']) && isset($config['username_domain'][$host])) - $username .= '@'.rcube_parse_host($config['username_domain'][$host]); + $username .= '@'.rcube_parse_host($config['username_domain'][$host], $host); else if (is_string($config['username_domain'])) - $username .= '@'.rcube_parse_host($config['username_domain']); + $username .= '@'.rcube_parse_host($config['username_domain'], $host); } // Convert username to lowercase. If IMAP backend |