Correcting issue #439, where date pickers were no longer functioning.

This commit is contained in:
Nathan Glasl 2016-03-18 16:38:40 +11:00
parent dde5eaa743
commit cbe47268fc
1 changed files with 4 additions and 2 deletions

View File

@ -21,8 +21,10 @@ class UserForm extends Form {
new FieldList()
);
$this->setFields($this->getFormFields());
$this->setActions($this->getFormActions());
$this->setFields($fields = $this->getFormFields());
$fields->setForm($this);
$this->setActions($actions = $this->getFormActions());
$actions->setForm($this);
$this->setValidator($this->getRequiredFields());
// Number each page