Skip to content

Commit

Permalink
Remove un-necessary parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Aug 30, 2012
1 parent 19c2a58 commit 6a95b57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Controller/Component/Auth/DigestAuthenticate.php
Expand Up @@ -138,7 +138,7 @@ public function getUser($request) {
if (empty($digest)) {
return false;
}
$user = $this->_findUser($digest['username'], null);
$user = $this->_findUser($digest['username']);
if (empty($user)) {
return false;
}
Expand Down

0 comments on commit 6a95b57

Please sign in to comment.