소스 검색

[HttpKernel] fixed typo

Fabien Potencier 14 년 전
부모
커밋
47e5344eda
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Symfony/Component/HttpKernel/Security/Firewall/ExceptionListener.php

+ 1 - 1
src/Symfony/Component/HttpKernel/Security/Firewall/ExceptionListener.php

@@ -137,7 +137,7 @@ class ExceptionListener
             $this->logger->debug('Calling Authentication entry point');
         }
 
-        $request->getSession()->set('_security.target_url', $request->getUri());
+        $request->getSession()->set('_security.target_path', $request->getUri());
 
         return $this->authenticationEntryPoint->start($request, $reason);
     }