From 6f15d2f388ee7dc4f072d18f291981086437e21a Mon Sep 17 00:00:00 2001 From: zero Date: Mon, 1 Oct 2007 04:07:26 +0000 Subject: [PATCH] =?UTF-8?q?=EC=9B=90=EA=B2=A9=20=ED=8C=8C=EC=9D=BC?= =?UTF-8?q?=EC=9D=84=20=EB=8B=A4=EC=9A=B4=EB=B0=9B=EB=8A=94=20FileHandler:?= =?UTF-8?q?:getRemoteFile()=20=ED=95=A8=EC=88=98=EB=82=B4=EC=97=90=20url?= =?UTF-8?q?=20query=EA=B0=92=EC=9D=B4=20=EB=88=84=EB=9D=BD=EB=90=98?= =?UTF-8?q?=EB=8A=94=20=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2660 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- classes/file/FileHandler.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/file/FileHandler.class.php b/classes/file/FileHandler.class.php index 5ff0aa954..4bcb124b6 100644 --- a/classes/file/FileHandler.class.php +++ b/classes/file/FileHandler.class.php @@ -150,7 +150,7 @@ $url_info['path'] = $path; } - $header = sprintf("GET %s HTTP/1.0\r\nHost: %s\r\nReferer: %s://%s\r\nRequestUrl: %s\r\nConnection: Close\r\n\r\n", $url_info['path'], $url_info['host'], $url_info['scheme'], $url_info['host'], Context::getRequestUri()); + $header = sprintf("GET %s?%s HTTP/1.0\r\nHost: %s\r\nReferer: %s://%s\r\nRequestUrl: %s\r\nConnection: Close\r\n\r\n", $url_info['path'], $url_info['query'], $url_info['host'], $url_info['scheme'], $url_info['host'], Context::getRequestUri()); @fwrite($fp, $header);