From 12dd5b08e877a2a48a96c7df341feab36893b531 Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Tue, 19 Oct 2010 01:27:35 +0000 Subject: [PATCH] BUGFIX Fixed missing "Save" action input label on ComplexTableField popup form (from r110165) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@112833 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- forms/ComplexTableField.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forms/ComplexTableField.php b/forms/ComplexTableField.php index 1e04e3cc4..b4dc46b4c 100755 --- a/forms/ComplexTableField.php +++ b/forms/ComplexTableField.php @@ -1053,7 +1053,7 @@ class ComplexTableField_Popup extends Form { $actions->push( $saveAction = new FormAction( "saveComplexTableField", - _t('CMSMain.SAVE') + _t('CMSMain.SAVE', 'Save') ) ); $saveAction->addExtraClass('save');