소스 검색

Merge remote branch 'merk/file'

* merk/file:
  [HttpFoundation\File] Removed realpath()
Fabien Potencier 14 년 전
부모
커밋
071caeb0c8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Symfony/Component/HttpFoundation/File/File.php

+ 1 - 1
src/Symfony/Component/HttpFoundation/File/File.php

@@ -491,7 +491,7 @@ class File
             throw new FileNotFoundException($path);
         }
 
-        $this->path = realpath($path);
+        $this->path = $path;
     }
 
     /**