From 535455606b5742c74351f872ef18cc365948de7c Mon Sep 17 00:00:00 2001 From: Hugo Hamon Date: Wed, 11 Jan 2012 11:23:23 +0100 Subject: [PATCH] [Downloader] fixed incorrect variable name in FileDownloader class. --- src/Composer/Downloader/FileDownloader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Downloader/FileDownloader.php b/src/Composer/Downloader/FileDownloader.php index aeb655be4..4508eb294 100644 --- a/src/Composer/Downloader/FileDownloader.php +++ b/src/Composer/Downloader/FileDownloader.php @@ -75,7 +75,7 @@ abstract class FileDownloader implements DownloaderInterface ), )); - copy($url, $filename, $ctx); + copy($url, $fileName, $ctx); } else { copy($url, $fileName); }