Skip to content
Snippets Groups Projects
Commit 8d3da959 authored by Dieter Holvoet's avatar Dieter Holvoet
Browse files

Issue #3491686 by dieterholvoet, jollysolutions: Add config schema

parent 41c41959
No related branches found
No related tags found
1 merge request!10Set options to an empty array if not an array
Pipeline #365761 passed
......@@ -17,6 +17,10 @@ function required_by_role_update_8001(): void {
continue;
}
if (!is_array($third_party_settings['required_plugin_options'])) {
$third_party_settings['required_plugin_options'] = [];
}
$options = $third_party_settings['required_plugin_options'];
$options = array_filter($options);
$options = array_values($options);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment