diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-06-24 13:22:08 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-06-24 13:22:08 +0000 |
| commit | 69ad5ecee02492cc06b7f3b9d729928237e26bea (patch) | |
| tree | 19b5360aa69ececbda0b78801da492b40c27aba1 /roundcubemail/program/include | |
| parent | bcd6d976a2049c538b63654ba145acf58c39b51e (diff) | |
Fix typo and re-enable input box for host
git-svn-id: https://svn.roundcube.net/trunk@1572 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
| -rw-r--r-- | roundcubemail/program/include/rcmail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcmail.php b/roundcubemail/program/include/rcmail.php index c2ad9cf87..057cabd04 100644 --- a/roundcubemail/program/include/rcmail.php +++ b/roundcubemail/program/include/rcmail.php @@ -474,7 +474,7 @@ class rcmail public function autoselect_host() { $default_host = $this->config->get('default_host'); - $host = !empty($default_host) ? get_input_value('_host', RCUBE_INPUT_POST) : $default_host; + $host = empty($default_host) ? get_input_value('_host', RCUBE_INPUT_POST) : $default_host; if (is_array($host)) { list($user, $domain) = explode('@', get_input_value('_user', RCUBE_INPUT_POST)); |
