Skip to content

Commit

Permalink
EZP-20442: Matrix labels are not washed
Browse files Browse the repository at this point in the history
  • Loading branch information
glye committed Feb 26, 2018
1 parent 3fbfe6d commit 917711e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<tr>
<th class="tight">&nbsp;</th>
{section var=ColumnNames loop=$matrix.columns.sequential}<th>{$ColumnNames.item.name}</th>{/section}
{section var=ColumnNames loop=$matrix.columns.sequential}<th>{$ColumnNames.item.name|wash( xhtml )}</th>{/section}
</tr>

{section var=Rows loop=$matrix.rows.sequential sequence=array( bglight, bgdark )}
Expand Down
4 changes: 2 additions & 2 deletions design/standard/templates/content/datatype/view/ezmatrix.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<table class="list" cellspacing="0">
<tr>
{section var=ColumnNames loop=$matrix.columns.sequential}
<th>{$ColumnNames.item.name}</th>
<th>{$ColumnNames.item.name|wash( xhtml )}</th>
{/section}
</tr>
{section var=Rows loop=$matrix.rows.sequential sequence=array( bglight, bgdark )}
Expand All @@ -14,4 +14,4 @@
</tr>
{/section}
</table>
{/let}
{/let}

0 comments on commit 917711e

Please sign in to comment.