summaryrefslogtreecommitdiff
path: root/roundcubemail/installer/config.php
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-03-03 08:52:50 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-03-03 08:52:50 +0000
commitda05d134c3b658adc8922e2cd669d5592f8ef3ed (patch)
tree73ad1170fe12dd09a51d581530bfd2a22c2abce5 /roundcubemail/installer/config.php
parent4ad343529958fd4c461d11f558569f627704326d (diff)
Some more bugfixes for the install script
git-svn-id: https://svn.roundcube.net/trunk@1169 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/config.php')
-rw-r--r--roundcubemail/installer/config.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/roundcubemail/installer/config.php b/roundcubemail/installer/config.php
index afea04724..5b365a5a5 100644
--- a/roundcubemail/installer/config.php
+++ b/roundcubemail/installer/config.php
@@ -251,9 +251,13 @@ echo $select_dbba->show($RCI->getprop('db_backend'));
<?php
$text_imaphost = new textfield(array('name' => '_default_host[]', 'size' => 30));
+$default_hosts = $RCI->get_hostlist();
+
+if (empty($default_hosts))
+ $default_hosts = array('');
$i = 0;
-foreach ($RCI->get_hostlist() as $host) {
+foreach ($default_hosts as $host) {
echo '<div id="defaulthostentry'.$i.'">' . $text_imaphost->show($host);
if ($i++ > 0)
echo '<a href="#" onclick="removehostfield(this.parentNode);return false" class="removelink" title="Remove this entry">remove</a>';