Use direct logic

This commit is contained in:
fabrixxm 2019-04-10 20:57:22 +02:00
parent 47aa9daf5a
commit 5a07afbc14
1 changed files with 3 additions and 3 deletions

View File

@ -1157,9 +1157,7 @@ function admin_page_site_post(App $a)
// save storage backend form
if (!is_null($storagebackend) && $storagebackend != "") {
if (!StorageManager::setBackend($storagebackend)) {
info(L10n::t('Invalid storage backend setting value.'));
} else {
if (StorageManager::setBackend($storagebackend)) {
$storage_opts = $storagebackend::getOptions();
$storage_form_prefix=preg_replace('|[^a-zA-Z0-9]|' ,'', $storagebackend);
$storage_opts_data = [];
@ -1185,6 +1183,8 @@ function admin_page_site_post(App $a)
}
$a->internalRedirect('admin/site' . $active_panel);
}
} else {
info(L10n::t('Invalid storage backend setting value.'));
}
}