소스 검색

[Routing] added back a comment that were deleted previously

Fabien Potencier 14 년 전
부모
커밋
4f9060c929
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/Symfony/Component/Routing/Generator/UrlGenerator.php

+ 1 - 0
src/Symfony/Component/Routing/Generator/UrlGenerator.php

@@ -29,6 +29,7 @@ class UrlGenerator implements UrlGeneratorInterface
 {
     protected $context;
     protected $decodedChars = array(
+        // %2F is not valid in a URL, so we don't encode it (which is fine as the requirements explicitely allowed it)
         '%2F' => '/',
     );