From cda456744667a2d69b1e6f7254c6f1603b61b718 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 25 Aug 2011 22:55:11 -0500 Subject: [PATCH 1/2] fixed bug that prevented view exception from being shown. --- system/view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/view.php b/system/view.php index ceea8194..f6e4737d 100644 --- a/system/view.php +++ b/system/view.php @@ -158,7 +158,7 @@ public function get() if ( ! file_exists($this->path.$view.EXT)) { - Exception\Handler::make(new Exception("View [$view] does not exist."))->handle(); + Exception\Handler::make(new \Exception("View [$view] does not exist."))->handle(); } foreach ($this->data as &$data) From c1131e18823cf7932a84066f934980149dfc8585 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 25 Aug 2011 22:57:13 -0500 Subject: [PATCH 2/2] increment version and update change log. --- changelog.md | 8 ++++++++ public/index.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 5fa10394..4c3b0128 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,13 @@ # Laravel Change Log +## Version 1.6.6 + +- Fix bug that caused exceptions to not be shown when attempting to render a view that doesn't exist. + +### Upgrading from 1.5.5 + +- Replace **system** directory. + ## Version 1.5.5 - Fix bug in session class cookie option extraction. diff --git a/public/index.php b/public/index.php index 9f31515d..c633bf95 100644 --- a/public/index.php +++ b/public/index.php @@ -3,7 +3,7 @@ * Laravel - A clean and classy framework for PHP web development. * * @package Laravel - * @version 1.5.5 + * @version 1.5.6 * @author Taylor Otwell * @link http://laravel.com */