thomascube
2008-03-03 1c4e5dd4d201b599094a40e908ebcaa6de40ac05
installer/config.php
@@ -251,9 +251,13 @@
<?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>';