Skip to content

Commit

Permalink
Merge pull request from GHSA-69wx-xc6j-28v3
Browse files Browse the repository at this point in the history
Prevent sql injection
  • Loading branch information
Fasse authored Jun 15, 2024
2 parents a4d8ab2 + 4e88b39 commit 3ff02b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adm_program/modules/ecards/ecard_send.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
$arrayRoles[] = $roleId;
}
} else {
$arrayUsers[] = $value;
$arrayUsers[] = (int) $value;
}
}

Expand Down

0 comments on commit 3ff02b0

Please sign in to comment.