소스 검색

[SecurityBundle] Remove obsolete "path" option from HttpBasicFactory

Jeremy Mikola 14 년 전
부모
커밋
7b287550ff
1개의 변경된 파일0개의 추가작업 그리고 4개의 파일을 삭제
  1. 0 4
      src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/HttpBasicFactory.php

+ 0 - 4
src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/HttpBasicFactory.php

@@ -36,10 +36,6 @@ class HttpBasicFactory implements SecurityFactoryInterface
         $listener = $container->setDefinition($listenerId, clone $container->getDefinition('security.authentication.listener.basic'));
         $listener->setArgument(2, $id);
 
-        if (isset($config['path'])) {
-            $container->setParameter('security.authentication.form.path', $config['path']);
-        }
-
         if (null === $defaultEntryPoint) {
             $defaultEntryPoint = 'security.authentication.basic_entry_point';
         }