Don't try to build form for "None" backend.

Fix #6266
This commit is contained in:
fabrixxm 2018-12-14 14:11:44 +01:00 committed by Hypolite Petovan
parent 578a391393
commit 3f03f3b4b7
1 changed files with 8 additions and 6 deletions

View File

@ -1532,12 +1532,14 @@ function admin_page_site(App $a)
$storage_form_prefix=preg_replace('|[^a-zA-Z0-9]|' ,'', $storage_current_backend);
$storage_form = [];
foreach($storage_current_backend::getOptions() as $name => $info) {
$type = $info[0];
$info[0] = $storage_form_prefix . '_' . $name;
$info['type'] = $type;
$info['field'] = 'field_' . $type . '.tpl';
$storage_form[$name] = $info;
if (!is_null($storage_current_backend) && $storage_current_backend != "") {
foreach($storage_current_backend::getOptions() as $name => $info) {
$type = $info[0];
$info[0] = $storage_form_prefix . '_' . $name;
$info['type'] = $type;
$info['field'] = 'field_' . $type . '.tpl';
$storage_form[$name] = $info;
}
}