mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
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:
parent
d3a85844f7
commit
63c543c18d
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user