From cda456744667a2d69b1e6f7254c6f1603b61b718 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 25 Aug 2011 22:55:11 -0500 Subject: [PATCH] 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 @@ class View { 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)