#fix agent manager

This commit is contained in:
Jonathan 2023-08-04 12:23:09 +02:00
parent 7a5bb117d5
commit 49f2dc35f8
1 changed files with 1 additions and 1 deletions

View File

@ -931,7 +931,7 @@ foreach ($fields as $field) {
// Filling the data.
$combo = [];
$combo = $field['combo_values'];
$combo = explode(',', (empty($combo) === true) ? [] : $combo);
$combo = explode(',', (empty($combo) === true) ? '' : $combo);
$combo_values = [];
foreach ($combo as $value) {
$combo_values[$value] = $value;