From 03bb3580a69150948ab37d8418aab9f759682c88 Mon Sep 17 00:00:00 2001 From: Tim Nagel Date: Wed, 20 Apr 2011 23:52:17 +1000 Subject: [PATCH] [HttpFoundation\File] Removed realpath() --- src/Symfony/Component/HttpFoundation/File/File.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpFoundation/File/File.php b/src/Symfony/Component/HttpFoundation/File/File.php index 4675332e17..bda63e9a6b 100644 --- a/src/Symfony/Component/HttpFoundation/File/File.php +++ b/src/Symfony/Component/HttpFoundation/File/File.php @@ -491,7 +491,7 @@ class File throw new FileNotFoundException($path); } - $this->path = realpath($path); + $this->path = $path; } /**