HTTPResponse has default empty headers

This commit is contained in:
Evan Prodromou 2009-10-22 16:20:56 -04:00
parent 4e639b8769
commit 65c45986c6
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ if (!defined('STATUSNET')) {
class HTTPResponse
{
public $code = null;
public $headers = null;
public $headers = array();
public $body = null;
}