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:
Alexander Shapoval 2018-08-06 19:49:19 +03:00 committed by Luke Towers
parent 99478a4fcc
commit 1e7c3691e7
1 changed files with 1 additions and 1 deletions

View File

@ -431,7 +431,7 @@ class Form extends WidgetBase
$this->fields = []; $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); $this->addFields($this->fields);
/* /*