Skip to content
Snippets Groups Projects
Commit f5ddfc5f authored by Georg Ringer's avatar Georg Ringer Committed by Christian Kuhn
Browse files

[BUGFIX] Remove workspace info from logging module if not needed

If EXT:workspaces is not installed, the workspace information should
also be skipped in the logging module. This makes it easier to read
and less bloated.

Resolves: #96314
Releases: main, 11.5
Change-Id: I22277ca681cc877d57686e02f36fe54e630d2f9a
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/72607


Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarBenni Mack <benni@typo3.org>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent 3e7d0aa4
Branches
Tags
No related merge requests found
......@@ -89,13 +89,15 @@
</f:if>
)
</f:if>
<br>
<span class="text-muted">
<f:if condition="{belog:workspaceTitle(uid:logItem.workspaceUid)}">
<f:then><belog:workspaceTitle uid="{logItem.workspaceUid}"/></f:then>
<f:else>[{logItem.workspaceUid}]</f:else>
</f:if>
</span>
<f:if condition="{workspaces}">
<br>
<span class="text-muted">
<f:if condition="{belog:workspaceTitle(uid:logItem.workspaceUid)}">
<f:then><belog:workspaceTitle uid="{logItem.workspaceUid}"/></f:then>
<f:else>[{logItem.workspaceUid}]</f:else>
</f:if>
</span>
</f:if>
</td>
<td>
<f:if condition="{isSubmoduleLayout}">
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment