From 7ae2011723042037e2d7334cc295843febed340b Mon Sep 17 00:00:00 2001 From: Mike Cao Date: Mon, 16 Oct 2017 22:07:11 -0700 Subject: [PATCH] Sending response should not exit to allow pre-stop filters. --- flight/net/Response.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flight/net/Response.php b/flight/net/Response.php index 8c72a21..cab0305 100644 --- a/flight/net/Response.php +++ b/flight/net/Response.php @@ -270,7 +270,7 @@ class Response { $this->sendHeaders(); } - exit($this->body); + echo $this->body; } }