瀏覽代碼

[HttpFoundation\File] Removed realpath()

Tim Nagel 14 年之前
父節點
當前提交
03bb3580a6
共有 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;
     }
 
     /**