mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #8513 from dizzystuff/8512-compfield-colcount-fix
FIX: Adding $Up. prefix to $ColumnCount references within $Fieldlist loops
This commit is contained in:
commit
360c098f5d
@ -1,6 +1,6 @@
|
|||||||
<% loop $FieldList %>
|
<% loop $FieldList %>
|
||||||
<% if $ColumnCount %>
|
<% if $Up.ColumnCount %>
|
||||||
<div class="column-{$ColumnCount} $FirstLast">
|
<div class="column-{$Up.ColumnCount} $FirstLast">
|
||||||
$FieldHolder
|
$FieldHolder
|
||||||
</div>
|
</div>
|
||||||
<% else %>
|
<% else %>
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
<% end_if %>
|
<% end_if %>
|
||||||
|
|
||||||
<% loop $FieldList %>
|
<% loop $FieldList %>
|
||||||
<% if $ColumnCount %>
|
<% if $Up.ColumnCount %>
|
||||||
<div class="column-{$ColumnCount} $FirstLast">
|
<div class="column-{$Up.ColumnCount} $FirstLast">
|
||||||
$SmallFieldHolder
|
$SmallFieldHolder
|
||||||
</div>
|
</div>
|
||||||
<% else %>
|
<% else %>
|
||||||
|
Loading…
Reference in New Issue
Block a user