diff --git a/templates/BreadcrumbsTemplate.ss b/templates/BreadcrumbsTemplate.ss
index d18be08c..b4314d31 100644
--- a/templates/BreadcrumbsTemplate.ss
+++ b/templates/BreadcrumbsTemplate.ss
@@ -1,5 +1,5 @@
<% if Pages %>
- <% control Pages %>
+ <% loop Pages %>
<% if Last %>$Title.XML<% else %>$MenuTitle.XML »<% end_if %>
- <% end_control %>
+ <% end_loop %>
<% end_if %>
\ No newline at end of file
diff --git a/templates/CMSPageHistoryController_versions.ss b/templates/CMSPageHistoryController_versions.ss
index c6d9117c..b69f7935 100755
--- a/templates/CMSPageHistoryController_versions.ss
+++ b/templates/CMSPageHistoryController_versions.ss
@@ -9,15 +9,15 @@
<% if Actions %>
<% if Actions %>
- <% control Actions %>
+ <% loop Actions %>
$Field
- <% end_control %>
+ <% end_loop %>
<% end_if %>
diff --git a/templates/Includes/Install_deleteinstallfiles.ss b/templates/Includes/Install_deleteinstallfiles.ss
index cd1a7574..60a57244 100644
--- a/templates/Includes/Install_deleteinstallfiles.ss
+++ b/templates/Includes/Install_deleteinstallfiles.ss
@@ -4,9 +4,9 @@
- <% control UnsuccessfulFiles %>
+ <% loop UnsuccessfulFiles %>
- $File
- <% end_control %>
+ <% end_loop %>
<% else %>
diff --git a/templates/Includes/ReportAdmin_Content.ss b/templates/Includes/ReportAdmin_Content.ss
index f71516c3..04ff5800 100644
--- a/templates/Includes/ReportAdmin_Content.ss
+++ b/templates/Includes/ReportAdmin_Content.ss
@@ -2,16 +2,16 @@
diff --git a/templates/ReportAdminForm.ss b/templates/ReportAdminForm.ss
index 0466d91a..bc8e262b 100644
--- a/templates/ReportAdminForm.ss
+++ b/templates/ReportAdminForm.ss
@@ -13,11 +13,11 @@
<% _t('ReportAdminForm.FILTERBY', 'Filter by') %>
- <% control FieldMap.Filters %>
- <% control Children %>
+ <% loop FieldMap.Filters %>
+ <% loop Children %>
$FieldHolder
- <% end_control %>
- <% end_control %>
+ <% end_loop %>
+ <% end_loop %>
@@ -31,7 +31,7 @@
$FieldMap.ReportContent.FieldHolder
- <% control HiddenFields %>$Field<% end_control %>
+ <% loop HiddenFields %>$Field<% end_loop %>
diff --git a/templates/SSReportTableField_printable.ss b/templates/SSReportTableField_printable.ss
index 854fac0f..ca000527 100644
--- a/templates/SSReportTableField_printable.ss
+++ b/templates/SSReportTableField_printable.ss
@@ -8,19 +8,19 @@
<%-- --%>
- <% control Form.Controller %>
+ <% with Form.Controller %>
$CurrentReport.Title
- <% control CurrentReport.getCmsFields %>
+ <% with CurrentReport.getCmsFields %>
<% if Name == Filters %>
Filters
- <% control FieldSet %>
+ <% loop FieldSet %>
- $Title = $performReadonlyTransformation.Field
- <% end_control %>
+ <% end_loop %>
<% end_if %>
- <% end_control %>
- <% end_control %>
+ <% end_with %>
+ <% end_with %>
<% include TableListField %>
\ No newline at end of file