From 0c7b5b6a74ccdb519f91884b276eb69c1c6a8205 Mon Sep 17 00:00:00 2001 From: devflow Date: Wed, 19 Nov 2014 11:53:12 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9E=98=EB=AA=BB=EB=90=9C=20=ED=95=A8?= =?UTF-8?q?=EC=88=98=20=EC=A3=BC=EC=84=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 함수 오타 수정. --- classes/file/FileHandler.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/classes/file/FileHandler.class.php b/classes/file/FileHandler.class.php index 29d94eb7f..d31aefc76 100644 --- a/classes/file/FileHandler.class.php +++ b/classes/file/FileHandler.class.php @@ -138,7 +138,7 @@ class FileHandler * Write $buff into the specified file * * @param string $filename Path of target file - * @param string $buff Content to be writeen + * @param string $buff Content to be written * @param string $mode a(append) / w(write) * @return void */ @@ -510,7 +510,7 @@ class FileHandler * @param int $timeout Connection timeout * @param string $method GET/POST * @param string $content_type Content type header of HTTP request - * @param string[] $headers Headers key vaule array. + * @param string[] $headers Headers key value array. * @param string[] $cookies Cookies key value array. * @param string $post_data Request arguments array for POST method * @return string If success, the content of the target file. Otherwise: none @@ -603,7 +603,7 @@ class FileHandler * @param string $timeout Connection timeout * @param string $method GET/POST * @param string $content_type Content type header of HTTP request - * @param string[] $headers Headers key vaule array. + * @param string[] $headers Headers key value array. * @return bool TRUE: success, FALSE: failed */ function getRemoteFile($url, $target_filename, $body = null, $timeout = 3, $method = 'GET', $content_type = null, $headers = array())