Skip to content

Commit

Permalink
Fixed HTTP Digest auth not being passed user checker
Browse files Browse the repository at this point in the history
Commit 05be5da1710ab681a04334d58126f8c3d431e3cb added the ability to
configure a user checker on a per firewall basis. However, that commit seems to
have missed updating the HttpDigestFactory.
  • Loading branch information
SamFleming committed Jan 27, 2016
1 parent 6704f62 commit 517a9a2
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -29,6 +29,7 @@ public function create(ContainerBuilder $container, $id, $config, $userProvider,
$container
->setDefinition($provider, new DefinitionDecorator('security.authentication.provider.dao'))
->replaceArgument(0, new Reference($userProvider))
->replaceArgument(1, new Reference('security.user_checker.'.$id))
->replaceArgument(2, $id)
;

Expand Down

0 comments on commit 517a9a2

Please sign in to comment.