Actions
Bug #21045
closedPages without translation are also displayed with standard language
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2009-09-13
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.2
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
Situation:
If a website is available in standard language but not in the selected language, then the link to the website is in standard language. (Menu-generated)
Problem: /typo3conf/ext/altern_lang_page_link/class.ux_t3lib_page.php
line: 71
The requested variable if an overlay is available won't be set.
Solution change l. 71 from:
If(is_array($row)) $row["langOverlayed"]=1
to:
If(is_array($row)) {
$row["langOverlayed"] = 1
$row["_PAGES_OVERLAY"] = 1
}
Afterwards all works great.
(issue imported from #M11939)
Actions