<h2>{f:translate(key: 'LLL:EXT:lang/locallang_show_rechis.xlf:changes')}</h2>
<div>
- <f:be.infobox state="-1">{f:translate(key: 'LLL:EXT:lang/locallang_show_rechis.xlf:differenceMsg')}</f:be.infobox>
+ <f:be.infobox state="-1">{f:translate(key: 'LLL:EXT:lang/locallang_show_rechis.xlf:differenceMsg') -> f:format.raw()}</f:be.infobox>
<table class="table table-striped table-hover table-vertical-top" id="typo3-history">
<thead>
<tr>
<tbody>
<f:for each="{history}" as="historyRow" key="key">
<tr>
- <td><span><span title="{f:translate(key: 'LLL:EXT:lang/locallang_show_rechis.xlf:sumUpChanges')}"><f:format.raw>
- {historyRow.rollbackLink}
- </f:format.raw></span></span></td>
+ <td><span><span title="{f:translate(key: 'LLL:EXT:lang/locallang_show_rechis.xlf:sumUpChanges')}">
+ {historyRow.rollbackLink -> f:format.raw()}
+ </span></span></td>
<td>{historyRow.time}</td>
<td>{historyRow.age}</td>
<td>
{historyRow.backendUserName}
</td>
<td>
- <f:format.raw>{historyRow.tableUid}</f:format.raw>
+ {historyRow.tableUid -> f:format.raw()}
</td>
<td>
<f:if condition="{historyRow.action}">
<strong>
- <f:format.raw>{historyRow.action}</f:format.raw>
+ {historyRow.action -> f:format.raw()}
</strong>
</f:if>
<f:if condition="{historyRow.fieldNames}">
- <f:format.raw>{historyRow.fieldNames}</f:format.raw>
+ {historyRow.fieldNames -> f:format.raw()}
</f:if>
<f:if condition="{historyRow.differences}">
<f:render partial="RecordHistory/Diff" arguments="{differences: historyRow.differences}"/>
</f:if>
</td>
<td>
- <f:format.raw>{historyRow.markState}</f:format.raw>
+ {historyRow.markState -> f:format.raw()}
</td>
</tr>
</f:for>