Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Weißl <jargon@molb.org>2013-06-09 16:08:22 +0400
committerJohannes Weißl <jargon@molb.org>2013-06-09 16:08:22 +0400
commitd9a8d210f56859d583f3cc2674771e483edc785e (patch)
tree7e90ba1c3b5f6eaceb9905b6e43374d03d356783 /plugins/http_authentication
parent60b6d7c3894f61eb9c8bc40efe5528e91386bf94 (diff)
Fix http_authentication_host usage
Without this fix it is impossible to use a host different from config option "http_authentication_host" after logout (fixup aec2869).
Diffstat (limited to 'plugins/http_authentication')
-rw-r--r--plugins/http_authentication/http_authentication.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/http_authentication/http_authentication.php b/plugins/http_authentication/http_authentication.php
index 57227cb03..2631537a0 100644
--- a/plugins/http_authentication/http_authentication.php
+++ b/plugins/http_authentication/http_authentication.php
@@ -52,7 +52,7 @@ class http_authentication extends rcube_plugin
$this->load_config();
$host = rcmail::get_instance()->config->get('http_authentication_host');
- if (is_string($host) && trim($host) !== '')
+ if (is_string($host) && trim($host) !== '' && empty($args['host']))
$args['host'] = rcube_utils::idn_to_ascii(rcube_utils::parse_host($host));
// Allow entering other user data in login form,