summaryrefslogtreecommitdiff
path: root/roundcubemail/installer/rcube_install.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-06-03 08:09:46 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-06-03 08:09:46 +0000
commita43d760ff43a38475367adf1f151d80cf17e61e0 (patch)
treeeb7bc1178957d4fe827c87ee8aabdd6297e79212 /roundcubemail/installer/rcube_install.php
parentd40dd8eed2e09c83c92be8428b3d3db7901f1979 (diff)
- support dynamic hostname variables in config
git-svn-id: https://svn.roundcube.net/trunk@3702 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/rcube_install.php')
-rw-r--r--roundcubemail/installer/rcube_install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/installer/rcube_install.php b/roundcubemail/installer/rcube_install.php
index 580aba858..afd422433 100644
--- a/roundcubemail/installer/rcube_install.php
+++ b/roundcubemail/installer/rcube_install.php
@@ -466,7 +466,7 @@ class rcube_install
foreach ($default_hosts as $key => $name) {
if (!empty($name))
- $out[] = is_numeric($key) ? $name : $key;
+ $out[] = rcube_parse_host(is_numeric($key) ? $name : $key);
}
return $out;