Merge pull request #9680 from annando/issue-9402

Issue 9402: Avoid message "invalid storage backend settings" on empty value
This commit is contained in:
Hypolite Petovan 2020-12-19 13:07:02 -05:00 committed by GitHub
commit fc19d98392
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ class Site extends BaseAdmin
}
DI::baseUrl()->redirect('admin/site' . $active_panel);
}
} else {
} elseif (!empty($storagebackend)) {
notice(DI::l10n()->t('Invalid storage backend setting value.'));
}