alecpl
2010-08-05 b0eeaac9e01b602b76e4e199a061351888a13cbe
- Fix: rcube_user::get_username() doesn't take mail_domain setting into account (#1486895)


1 files modified
8 ■■■■■ changed files
program/include/rcube_user.php 8 ●●●●● patch | view | raw | blame | history
program/include/rcube_user.php
@@ -74,9 +74,11 @@
            if ($part == 'local') {
                return $local;
            }
            // if no domain was provided use the default if available
            if (empty($domain))
                $domain = $this->data['mail_host'];
            // if no domain was provided...
            if (empty($domain)) {
                $rcmail = rcmail::get_instance();
                $domain = $rcmail->config->mail_domain($this->data['mail_host']);
            }
            if ($part == 'domain') {
                return $domain;