thomascube
2007-11-25 c5799618997716288169b6fbcd1251f76788cd49
program/include/rcmail_template.inc
@@ -831,12 +831,12 @@
        }
    }
      
    $fields['host'] = isset($select_host) ? $select_host->show($_POST['_host']) : null;
    $fields['host'] = isset($select_host) ? $select_host->show(get_input_value('_host', RCUBE_INPUT_POST)) : null;
    }
  else if (!strlen($CONFIG['default_host']))
    {
    $input_host = new textfield(array('name' => '_host', 'id' => 'rcmloginhost', 'size' => 30));
    $fields['host'] = $input_host->show($_POST['_host']);
    $fields['host'] = $input_host->show(get_input_value('_host', RCUBE_INPUT_POST));
    }
  $form_name = strlen($attrib['form']) ? $attrib['form'] : 'form';