X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FSigner.php;h=6323b8931d7d7db0979f10475ea568e50346fb92;hb=699cef658363c387ca837689746e160b43b95119;hp=6e906392aaf6377579ecc2be2acea4829033b1f9;hpb=758eba6812e4d76ebb41f40659af438aebcb25cf;p=civicrm-core.git diff --git a/CRM/Utils/Signer.php b/CRM/Utils/Signer.php index 6e906392aa..6323b8931d 100644 --- a/CRM/Utils/Signer.php +++ b/CRM/Utils/Signer.php @@ -64,10 +64,12 @@ class CRM_Utils_Signer { * Array, fields which should be part of the signature. */ public function __construct($secret, $paramNames) { - sort($paramNames); // ensure consistent serialization of payloads + // ensure consistent serialization of payloads + sort($paramNames); $this->secret = $secret; $this->paramNames = $paramNames; - $this->signDelim = "_"; // chosen to be valid in URLs but not in salt or md5 + // chosen to be valid in URLs but not in salt or md5 + $this->signDelim = "_"; $this->defaultSalt = CRM_Utils_String::createRandom(self::SALT_LEN, CRM_Utils_String::ALPHANUMERIC); }