Merge pull request #681 from bencorlett/develop

Added Output Buffering
This commit is contained in:
Taylor Otwell
2012-08-13 12:17:35 -07:00
2 changed files with 33 additions and 0 deletions

View File

@@ -165,4 +165,23 @@ class Redirect extends Response {
return $this->with('errors', $errors);
}
/**
* Send the headers and content of the response to the browser.
*
* @return void
*/
public function send()
{
// Dump all output buffering, this ensures
// that symphony will send our redirect headers
// properly if we've outputted any content from
// within Laravel.
while (ob_get_level() > 0)
{
ob_end_clean();
}
return parent::send();
}
}