mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
원격 파일을 다운받는 FileHandler::getRemoteFile() 함수내에 url query값이 누락되는 버그 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2660 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
fb1d481d91
commit
6f15d2f388
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue