Skip to content
Snippets Groups Projects
Commit aa9a6b5f authored by Christian Kuhn's avatar Christian Kuhn Committed by Andreas Fernandez
Browse files

[BUGFIX] Drop obsolete workspace fluid partial

A last partial usage has been dropped during 6.2
times but the file has never been removed. Do that
now to avoid further developer confusion.

Resolves: #91944
Related: #49689
Releases: master, 10.4
Change-Id: I784eaa7cbcf32776db1c0b21ef4ca45cd5c08f2b
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/65216


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Tested-by: default avatarSimon Gilli <typo3@gilbertsoft.org>
Tested-by: default avatarMarkus Klein <markus.klein@typo3.org>
Tested-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
Reviewed-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Reviewed-by: default avatarSimon Gilli <typo3@gilbertsoft.org>
Reviewed-by: default avatarMarkus Klein <markus.klein@typo3.org>
Reviewed-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
parent 8773984a
Branches
Tags
No related merge requests found
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
<ul class="x-tab-strip x-tab-strip-top">
<f:for each="{workspaceList}" as="workspace" key="uid">
<f:if condition="{uid}=={activeWorkspaceUid}">
<f:then>
<li class="x-tab-strip-active x-tab-strip-closable">
<span class="x-tab-right">
<em class="x-tab-left"><span class="x-tab-strip-inner"><span class="x-tab-strip-text">{workspace}</span></span></em>
</span>
</li>
</f:then>
<f:else>
<li class="x-tab-strip-closable">
<f:link.action controller="Review" action="index" additionalParams="{workspace:uid}" class="x-tab-right">
<em class="x-tab-left"><span class="x-tab-strip-inner"><span class="x-tab-strip-text">{workspace}</span></span></em>
</f:link.action>
</li>
</f:else>
</f:if>
</f:for>
<f:if condition="{showAllWorkspaceTab}">
<li class="last {f:if(condition: '-98=={activeWorkspaceUid}', then: 'x-tab-strip-active')}">
<f:link.action controller="Review" action="fullIndex" class="x-tab-right">
<em class="x-tab-left">
<span class="x-tab-strip-inner">
<span class="x-tab-strip-text">
All
</span>
</span>
</em>
</f:link.action>
</li>
</f:if>
<div class="x-clear"></div>
</ul>
</html>
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