Skip to content
Snippets Groups Projects
Commit 038dc3ca authored by Kevin Ditscheid's avatar Kevin Ditscheid
Browse files

[BUGFIX] Make compatibility to 8LTS on locallang paths

parent 09c88212
No related branches found
No related tags found
1 merge request!13Feature upgrade to9 lts
......@@ -43,8 +43,14 @@
<f:section name="path">
<div class="module-docheader-bar-column-right">
<span class="typo3-docheader-pagePath">
<f:translate key="LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.path" />:
<f:format.raw>{docHeader.metaInformation.path}</f:format.raw>
<f:if condition="{typo3Version} < 9000000">
<f:then>
<f:translate key="LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:labels.path" />: <f:format.raw>{docHeader.metaInformation.path}</f:format.raw>
</f:then>
<f:else>
<f:translate key="LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.path" />: <f:format.raw>{docHeader.metaInformation.path}</f:format.raw>
</f:else>
</f:if>
</span>
<f:format.raw>{docHeader.metaInformation.recordInformation}</f:format.raw>
</div>
......
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