BUGFIX Member_ProfileForm should fallback to english text for save button if no translation defined for current language

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@108408 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sean Harvey 2010-07-23 03:38:33 +00:00 committed by Sam Minnee
parent 52f1d1b17d
commit 79b6c9d9cb

View File

@ -1605,7 +1605,7 @@ class Member_ProfileForm extends Form {
$fields->push(new HiddenField('ID','ID',$member->ID));
$actions = new FieldSet(
new FormAction('dosave',_t('CMSMain.SAVE'))
new FormAction('dosave',_t('CMSMain.SAVE', 'Save'))
);
$validator = new Member_Validator();