From 8db2b94203a5d08e3166d39154b9f035549a3481 Mon Sep 17 00:00:00 2001 From: Dmitriy Simushev Date: Thu, 8 May 2014 11:29:39 +0000 Subject: [PATCH] Prepare a request before send --- src/mibew/app.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mibew/app.php b/src/mibew/app.php index febe070e..21b83bc0 100644 --- a/src/mibew/app.php +++ b/src/mibew/app.php @@ -28,4 +28,5 @@ $request = Request::createFromGlobals(); $response = $application->handleRequest($request); // Send response to the user +$response->prepare($request); $response->send();