[#74] hash value now uses string instead of hex

This commit is contained in:
Phil 2024-09-05 09:20:15 +02:00
parent 4972a5dbc1
commit d4cfd0a173
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ civiproxy_security_check('mail-confirm');
// basic restraints
$valid_parameters = array( 'sid' => 'int',
'cid' => 'int',
'h' => 'hex');
'h' => 'string');
$parameters = civiproxy_get_parameters($valid_parameters);
// check if parameters specified

View File

@ -19,7 +19,7 @@ civiproxy_security_check('mail-resubscribe');
// basic restraints
$valid_parameters = array( 'jid' => 'int',
'qid' => 'int',
'h' => 'hex');
'h' => 'string');
$parameters = civiproxy_get_parameters($valid_parameters);
// check if parameters specified

View File

@ -19,7 +19,7 @@ civiproxy_security_check('mail-unsubscribe');
// basic restraints
$valid_parameters = array( 'jid' => 'int',
'qid' => 'int',
'h' => 'hex');
'h' => 'string');
$parameters = civiproxy_get_parameters($valid_parameters);
// check if parameters specified