Cast outside field config to array (#3670)
This is necessary to enable the setting of tabs for SECTION_OUTSIDE: http://octobercms.com/docs/backend/forms#form-tab-options. Credit to @ebashu-on-holidays
This commit is contained in:
parent
99478a4fcc
commit
1e7c3691e7
|
|
@ -431,7 +431,7 @@ class Form extends WidgetBase
|
|||
$this->fields = [];
|
||||
}
|
||||
|
||||
$this->allTabs->outside = new FormTabs(FormTabs::SECTION_OUTSIDE, $this->config);
|
||||
$this->allTabs->outside = new FormTabs(FormTabs::SECTION_OUTSIDE, (array) $this->config);
|
||||
$this->addFields($this->fields);
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in New Issue