Explorar el Código

Merge remote branch 'merk/file'

* merk/file:
  [HttpFoundation\File] Removed realpath()
Fabien Potencier hace 14 años
padre
commit
071caeb0c8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;
     }
 
     /**