Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ddurieux committed Apr 11, 2024
1 parent a0c62f0 commit e732fa4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion inc/deployuserinteraction.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,9 @@ function check_data_from_form() {
*/
function add_item($params) {
//Add to package defintion
return $this->addToPackage($params['id'], $params, 'userinteractions');
$id = $params['id'];
unset($params['id']);
return $this->addToPackage($id, $params, 'userinteractions');
}


Expand Down

0 comments on commit e732fa4

Please sign in to comment.