diff options
author | alecpl <alec@alec.pl> | 2010-06-03 08:02:12 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-06-03 08:02:12 +0000 |
commit | bb8721aaeb4961f0dee8ca250749906e01a8f6a8 (patch) | |
tree | 743b5444c38d9903331079e95bf99b42c83ba3b0 /program/include/rcube_config.php | |
parent | 05a631a43c1950fc99f817cb50e4184dc0696663 (diff) |
- Support dynamic hostname (%d/%n) variables in configuration options (#1485438)
Diffstat (limited to 'program/include/rcube_config.php')
-rw-r--r-- | program/include/rcube_config.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php index bd53517c1..eb2e088c4 100644 --- a/program/include/rcube_config.php +++ b/program/include/rcube_config.php @@ -277,12 +277,12 @@ class rcube_config $domain = $this->prop['mail_domain'][$host]; } else if (!empty($this->prop['mail_domain'])) - $domain = $this->prop['mail_domain']; - + $domain = rcube_parse_host($this->prop['mail_domain']); + return $domain; } - - + + /** * Getter for error state * |