Fixed stupid bug

This commit is contained in:
Jose Gonzalez 2021-04-16 09:10:38 +02:00
parent 0e12402469
commit 494666244d
1 changed files with 2 additions and 2 deletions

View File

@ -8491,7 +8491,7 @@ function api_set_update_group($id_group, $thrash2, $other, $thrash3)
$disabled = $other['data'][5];
$custom_id = $other['data'][6];
$contact = $other['data'][7];
$other = $other['data'][8];
$otherData = $other['data'][8];
$maxAgents = $other['data'][9];
$return = db_process_sql_update(
@ -8505,7 +8505,7 @@ function api_set_update_group($id_group, $thrash2, $other, $thrash3)
'disabled' => $disabled,
'custom_id' => $custom_id,
'contact' => $contact,
'other' => $other,
'other' => $otherData,
'max_agents' => $maxAgents,
],
['id_grupo' => $id_group]