mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Tidied up argument list for Object::create() in ComplexTableField->AddForm()
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63815 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
9f0718f6df
commit
332da65edb
@ -503,9 +503,14 @@ JS;
|
|||||||
$validator = $this->getValidatorFor($childData);
|
$validator = $this->getValidatorFor($childData);
|
||||||
|
|
||||||
$form = Object::create(
|
$form = Object::create(
|
||||||
$this->popupClass,
|
$this->popupClass,
|
||||||
$this, "AddForm",
|
$this,
|
||||||
$fields, $validator, false, $childData);
|
'AddForm',
|
||||||
|
$fields,
|
||||||
|
$validator,
|
||||||
|
false,
|
||||||
|
$childData
|
||||||
|
);
|
||||||
|
|
||||||
return $form;
|
return $form;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user