From 5e3a93d050bbfbc1f5f4d50de23fa8d03b26f40a Mon Sep 17 00:00:00 2001 From: Jeremy Bush Date: Mon, 24 Jan 2011 11:01:13 -0600 Subject: [PATCH] Docs: adding upgrade note about index.php/bootstrap.php --- guide/kohana/upgrading.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/guide/kohana/upgrading.md b/guide/kohana/upgrading.md index fcd9de800..74c181eed 100644 --- a/guide/kohana/upgrading.md +++ b/guide/kohana/upgrading.md @@ -59,4 +59,8 @@ The cookie class now throws an exception if there isn't a salt set, and no salt If for some reason you are overloading your controller's constructor, it has changed to: - public function __construct(Request $request, Response $response) \ No newline at end of file + public function __construct(Request $request, Response $response) + +## index.php / bootstrap.php changes + +The main change here is that the request execution has been removed from bootstrap.php and moved to index.php. This allows you to use one bootstrap when doing testing. The reason for this change is that the bootstrap should only setup the environment. It shouldn't run it. \ No newline at end of file