#9023 Fixed implode with php8

This commit is contained in:
Daniel Maya 2022-05-24 12:32:08 +02:00
parent e171a2fd08
commit fd026f8cd6
1 changed files with 1 additions and 1 deletions

View File

@ -556,7 +556,7 @@ function config_update_config()
$error_update[] = __('Autocreate profile group');
}
if (config_update_value('default_assign_tags', implode(',', get_parameter('default_assign_tags')), true) === false) {
if (config_update_value('default_assign_tags', implode(',', get_parameter('default_assign_tags', [])), true) === false) {
$error_update[] = __('Autocreate profile tags');
}