Actions
Bug #90641
closedSetting hreflang to "x-default" break html-lang attribute
Start date:
2020-03-04
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
I have the following Site Handling config in a multi page tree setup:
- www.example.com/ is the default international page
- www.example.com/de-de is a different page tree for Germany
- www.example.com/it-it is a different page tree for Italy
- www.example.com/en-GB is a different page tree for Great Britain.
Each page tree uses an own config.yaml for the site configuration.
On the homepage within the HTML-head this correct hreflang tags where rendered:
<link rel="alternate" href="https://www.example.com/it-it/" hreflang="de-DE">
<link rel="alternate" href="https://www.example.com/it-it/" hreflang="it-IT">
<link rel="alternate" href="https://www.example.com/it-it/" hreflang="en-DB">
<link rel="alternate" href="https://www.example.com/" hreflang="x-default">
This works, since I set hreflang to "x-default" for the default international page.
Since this property is `Used within for "lang" and "hreflang" attributes` I got a the following HTML-tag:
<html dir="ltr" lang="x-default">
This is indeed wrong.
Actions