From ef983aa718e4b9c1e974008a030a7f4eabc633fe Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Mon, 28 Jul 2008 07:40:47 +0000 Subject: [PATCH] BUGFIX Fixed i18n namespacing issue in TableListField_Item.ss - was using _t('Form.DELETE'), but templates don't allow to re-use variables outside their own namespace git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@59283 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- templates/Includes/TableListField_Item.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/Includes/TableListField_Item.ss b/templates/Includes/TableListField_Item.ss index e9b85a44b..aea38f938 100755 --- a/templates/Includes/TableListField_Item.ss +++ b/templates/Includes/TableListField_Item.ss @@ -4,6 +4,6 @@ $Value <% end_control %> <% if Can(delete) %> - <% _t('Form.DELETE') %> + <% _t('DELETE') %> <% end_if %> \ No newline at end of file