Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
e303b674
Commit
e303b674
authored
12 years ago
by
catch
Browse files
Options
Downloads
Patches
Plain Diff
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
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/modules/language/language.negotiation.inc
+6
-1
6 additions, 1 deletion
core/modules/language/language.negotiation.inc
core/modules/language/language.test
+1
-1
1 addition, 1 deletion
core/modules/language/language.test
with
7 additions
and
2 deletions
core/modules/language/language.negotiation.inc
+
6
−
1
View file @
e303b674
...
@@ -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
;
}
}
...
...
This diff is collapsed.
Click to expand it.
core/modules/language/language.test
+
1
−
1
View file @
e303b674
...
@@ -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
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment