Skip to content

Commit fde81ae

Browse files
authored
Merge commit from fork
Stronger parameter check
2 parents 7620608 + 3f97a9e commit fde81ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adm_program/modules/groups-roles/members_assignment_data.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
// Initialize and check the parameters
5252
$getRoleUuid = admFuncVariableIsValid($_GET, 'role_uuid', 'string', array('requireValue' => true, 'directOutput' => true));
53-
$getFilterRoleUuid = admFuncVariableIsValid($_GET, 'filter_rol_uuid', 'string');
53+
$getFilterRoleUuid = StringUtils::strValidCharacters(admFuncVariableIsValid($_GET, 'filter_rol_uuid', 'string'), 'noSpecialChar');
5454
$getMembersShowAll = admFuncVariableIsValid($_GET, 'mem_show_all', 'bool', array('defaultValue' => false));
5555
$getDraw = admFuncVariableIsValid($_GET, 'draw', 'int', array('requireValue' => true));
5656
$getStart = admFuncVariableIsValid($_GET, 'start', 'int', array('requireValue' => true));

0 commit comments

Comments
 (0)