Skip to content
Snippets Groups Projects
Commit e303b674 authored by catch's avatar catch
Browse files

Issue #1572394 by attiks, Sweetchuck: Fixed Language detection by domain only works on port 80.

parent faa63d22
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -220,6 +220,11 @@ function language_from_url($languages) { ...@@ -220,6 +220,11 @@ function language_from_url($languages) {
break; break;
case LANGUAGE_NEGOTIATION_URL_DOMAIN: case LANGUAGE_NEGOTIATION_URL_DOMAIN:
// Get only the host, not the port.
$http_host= $_SERVER['HTTP_HOST'];
if (strpos($http_host, ':') !== FALSE) {
$http_host = current(explode(':', $http_host));
}
$domains = language_negotiation_url_domains(); $domains = language_negotiation_url_domains();
foreach ($languages as $language) { foreach ($languages as $language) {
// Skip the check if the language doesn't have a domain. // Skip the check if the language doesn't have a domain.
...@@ -228,7 +233,7 @@ function language_from_url($languages) { ...@@ -228,7 +233,7 @@ function language_from_url($languages) {
// the hostname. // the hostname.
$host = 'http://' . str_replace(array('http://', 'https://'), '', $domains[$language->langcode]); $host = 'http://' . str_replace(array('http://', 'https://'), '', $domains[$language->langcode]);
$host = parse_url($host, PHP_URL_HOST); $host = parse_url($host, PHP_URL_HOST);
if ($_SERVER['HTTP_HOST'] == $host) { if ($http_host == $host) {
$language_url = $language->langcode; $language_url = $language->langcode;
break; break;
} }
......
...@@ -706,7 +706,7 @@ class LanguageUILanguageNegotiationTestCase extends WebTestBase { ...@@ -706,7 +706,7 @@ class LanguageUILanguageNegotiationTestCase extends WebTestBase {
array( array(
'language_negotiation' => array(LANGUAGE_NEGOTIATION_URL, LANGUAGE_NEGOTIATION_DEFAULT), 'language_negotiation' => array(LANGUAGE_NEGOTIATION_URL, LANGUAGE_NEGOTIATION_DEFAULT),
'language_negotiation_url_part' => LANGUAGE_NEGOTIATION_URL_DOMAIN, 'language_negotiation_url_part' => LANGUAGE_NEGOTIATION_URL_DOMAIN,
'language_test_domain' => $language_domain, 'language_test_domain' => $language_domain . ':88',
'path' => 'admin/config', 'path' => 'admin/config',
'expect' => $language_string, 'expect' => $language_string,
'expected_method_id' => LANGUAGE_NEGOTIATION_URL, 'expected_method_id' => LANGUAGE_NEGOTIATION_URL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment