Преглед изворни кода

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