BUGFIX Fixed MoneyField constructor - parent (FormField) constructor calls setValue() already, which needs to happen *after* setting certain field instances

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@99391 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-02-17 00:43:12 +00:00 committed by Sam Minnee
parent d3a85844f7
commit 63c543c18d

View File

@ -29,12 +29,11 @@ class MoneyField extends FormField {
protected $fieldCurrency = null;
function __construct($name, $title = null, $value = "", $form = null) {
parent::__construct($name, $title, $value, $form);
// naming with underscores to prevent values from actually being saved somewhere
$this->fieldAmount = new NumericField("{$name}[Amount]", _t('MoneyField.FIELDLABELAMOUNT', 'Amount'));
$this->fieldCurrency = $this->FieldCurrency();
$this->setValue($value);
parent::__construct($name, $title, $value, $form);
}
/**