From f788c90b3cf57317da46fbb0fb9e8721ffbec9ed Mon Sep 17 00:00:00 2001 From: mark_story Date: Sun, 5 Nov 2017 22:34:47 -0500 Subject: [PATCH] Fix typo --- lib/Cake/Controller/Component/Auth/DigestAuthenticate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Controller/Component/Auth/DigestAuthenticate.php b/lib/Cake/Controller/Component/Auth/DigestAuthenticate.php index 46b7648b1..04637994f 100644 --- a/lib/Cake/Controller/Component/Auth/DigestAuthenticate.php +++ b/lib/Cake/Controller/Component/Auth/DigestAuthenticate.php @@ -44,7 +44,7 @@ App::uses('BasicAuthenticate', 'Controller/Component/Auth'); * Due to the Digest authentication specification, digest auth requires a special password value. You * can generate this password using `DigestAuthenticate::password()` * - * `$digestPass = DigestAuthenticate::password($username, $passwordm env('SERVER_NAME'));` + * `$digestPass = DigestAuthenticate::password($username, $password, env('SERVER_NAME'));` * * Its recommended that you store this digest auth only password separate from password hashes used for other * login methods. For example `User.digest_pass` could be used for a digest password, while `User.password` would