Bladeren bron

[HttpFoundation\File] Removed realpath()

Tim Nagel 14 jaren geleden
bovenliggende
commit
03bb3580a6
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  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;
     }
 
     /**