diff options
author | xue <> | 2007-05-01 21:46:47 +0000 |
---|---|---|
committer | xue <> | 2007-05-01 21:46:47 +0000 |
commit | 24bdc94145c11744f624149a0dbdd10e3d5ca4cd (patch) | |
tree | ab9474edaba0c9b4eb341054814e2ee9580b5876 | |
parent | 419f0815c85a40639ac82c1ce05c80186a64dc55 (diff) |
Fixed #612.
-rw-r--r-- | framework/Web/THttpResponse.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/THttpResponse.php b/framework/Web/THttpResponse.php index 04626b95..624b24be 100644 --- a/framework/Web/THttpResponse.php +++ b/framework/Web/THttpResponse.php @@ -257,7 +257,7 @@ class THttpResponse extends TModule implements ITextWriter * @param string file name
* @param string content to be set. If null, the content will be read from the server file pointed to by $fileName.
* @param string mime type of the content.
- * @param array list of headers to be sent
+ * @param array list of headers to be sent. Each array element represents a header string (e.g. 'Content-Type: text/plain').
* @throws TInvalidDataValueException if the file cannot be found
*/
public function writeFile($fileName,$content=null,$mimeType=null,$headers=null)
|