Reverting previous change that prevent entry into a special case.

This commit is contained in:
mark_story 2011-07-08 21:23:02 -04:00 committed by mark_story
parent 70744f3cb4
commit 8bfc0a859d

View file

@ -300,7 +300,7 @@ class CakeResponse {
*
* @var string
*/
protected $_body = '';
protected $_body = null;
/**
* The charset the response body is encoded with
@ -662,6 +662,6 @@ class CakeResponse {
* @return string
*/
public function __toString() {
return $this->_body;
return (string)$this->_body;
}
}