[#74] hash value now uses string instead of hex
This commit is contained in:
parent
4972a5dbc1
commit
d4cfd0a173
|
|
@ -19,7 +19,7 @@ civiproxy_security_check('mail-confirm');
|
||||||
// basic restraints
|
// basic restraints
|
||||||
$valid_parameters = array( 'sid' => 'int',
|
$valid_parameters = array( 'sid' => 'int',
|
||||||
'cid' => 'int',
|
'cid' => 'int',
|
||||||
'h' => 'hex');
|
'h' => 'string');
|
||||||
$parameters = civiproxy_get_parameters($valid_parameters);
|
$parameters = civiproxy_get_parameters($valid_parameters);
|
||||||
|
|
||||||
// check if parameters specified
|
// check if parameters specified
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ civiproxy_security_check('mail-resubscribe');
|
||||||
// basic restraints
|
// basic restraints
|
||||||
$valid_parameters = array( 'jid' => 'int',
|
$valid_parameters = array( 'jid' => 'int',
|
||||||
'qid' => 'int',
|
'qid' => 'int',
|
||||||
'h' => 'hex');
|
'h' => 'string');
|
||||||
$parameters = civiproxy_get_parameters($valid_parameters);
|
$parameters = civiproxy_get_parameters($valid_parameters);
|
||||||
|
|
||||||
// check if parameters specified
|
// check if parameters specified
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ civiproxy_security_check('mail-unsubscribe');
|
||||||
// basic restraints
|
// basic restraints
|
||||||
$valid_parameters = array( 'jid' => 'int',
|
$valid_parameters = array( 'jid' => 'int',
|
||||||
'qid' => 'int',
|
'qid' => 'int',
|
||||||
'h' => 'hex');
|
'h' => 'string');
|
||||||
$parameters = civiproxy_get_parameters($valid_parameters);
|
$parameters = civiproxy_get_parameters($valid_parameters);
|
||||||
|
|
||||||
// check if parameters specified
|
// check if parameters specified
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue