فهرست منبع

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;
     }
 
     /**