diff options
author | alecpl <alec@alec.pl> | 2010-04-21 10:30:47 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-04-21 10:30:47 +0000 |
commit | f3e1010090c0b3dbcbf04c6ad356a610637ba2a9 (patch) | |
tree | dde49efd9a056cca281df870e641ae8a369d930e /program | |
parent | 479a9915e4a3cae2c32f6c6a2d2a6678b36311de (diff) |
- Hide IMAP host dropdown when single host is defined (#1486326)
Diffstat (limited to 'program')
-rwxr-xr-x | program/include/rcube_template.php | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index c62238057..8b8f7a981 100755 --- a/program/include/rcube_template.php +++ b/program/include/rcube_template.php @@ -1024,7 +1024,7 @@ class rcube_template extends rcube_html_page $input_url = new html_hiddenfield(array('name' => '_url', 'id' => 'rcmloginurl', 'value' => $url)); $input_host = null; - if (is_array($default_host)) { + if (is_array($default_host) && count($default_host) > 1) { $input_host = new html_select(array('name' => '_host', 'id' => 'rcmloginhost')); foreach ($default_host as $key => $value) { @@ -1037,6 +1037,11 @@ class rcube_template extends rcube_html_page } } } + else if (is_array($default_host) && ($host = array_pop($default_host))) { + $hide_host = true; + $input_host = new html_hiddenfield(array( + 'name' => '_host', 'id' => 'rcmloginhost', 'value' => $host) + $attrib); + } else if (empty($default_host)) { $input_host = new html_inputfield(array('name' => '_host', 'id' => 'rcmloginhost') + $attrib); } @@ -1054,7 +1059,7 @@ class rcube_template extends rcube_html_page $table->add(null, $input_pass->show()); // add host selection row - if (is_object($input_host)) { + if (is_object($input_host) && !$hide_host) { $table->add('title', html::label('rcmloginhost', Q(rcube_label('server')))); $table->add(null, $input_host->show(get_input_value('_host', RCUBE_INPUT_POST))); } @@ -1063,10 +1068,14 @@ class rcube_template extends rcube_html_page $out .= $input_tzone->show(); $out .= $input_url->show(); $out .= $table->show(); + + if ($hide_host) { + $out .= $input_host->show(); + } // surround html output with a form tag if (empty($attrib['form'])) { - $out = $this->form_tag(array('name' => $form_name, 'method' => "post"), $out); + $out = $this->form_tag(array('name' => $form_name, 'method' => 'post'), $out); } return $out; |