Преглед на файлове

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