Skip to content

Commit

Permalink
FIX FILTER_VALIDATE_EMAIL param is not a string
Browse files Browse the repository at this point in the history
  • Loading branch information
hregis committed Mar 17, 2023
1 parent 3a2a73f commit bb7b69e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/public/ticket/ajax/ajax.php
Expand Up @@ -55,7 +55,7 @@

$action = GETPOST('action', 'aZ09');
$id = GETPOST('id', 'int');
$email = GETPOST('email', 'custom', 0, 'FILTER_VALIDATE_EMAIL');
$email = GETPOST('email', 'custom', 0, FILTER_VALIDATE_EMAIL);


if (!isModEnabled('ticket')) {
Expand Down

0 comments on commit bb7b69e

Please sign in to comment.