Commit cda45674 by Taylor Otwell

fixed bug that prevented view exception from being shown.

parent 812d3ff5
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment