Private GIT

Skip to content
Snippets Groups Projects
Commit 99fb4e4d authored by Laurent Pinsivy's avatar Laurent Pinsivy Committed by GitHub
Browse files

ref #5272 - Can't duplicate trap definition

$dupNbr is an array and not a string
parent b0e445ec
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,10 @@ $inputArguments = array(
'filter' => FILTER_SANITIZE_STRING,
'flags' => FILTER_REQUIRE_ARRAY
),
'dupNbr' => FILTER_SANITIZE_STRING
'dupNbr' => array(
'filter' => FILTER_SANITIZE_STRING,
'flags' => FILTER_REQUIRE_ARRAY
),
);
$inputGet = filter_input_array(
INPUT_GET,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment