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

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@112727 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2010-10-18 22:54:17 +00:00
parent ca7edd5ca5
commit 066bf90f02

View File

@ -1604,7 +1604,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();