Skip to content

Commit 3ff02b0

Browse files
authored
Merge pull request from GHSA-69wx-xc6j-28v3
Prevent sql injection
2 parents a4d8ab2 + 4e88b39 commit 3ff02b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adm_program/modules/ecards/ecard_send.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
$arrayRoles[] = $roleId;
9393
}
9494
} else {
95-
$arrayUsers[] = $value;
95+
$arrayUsers[] = (int) $value;
9696
}
9797
}
9898

0 commit comments

Comments
 (0)