Browse Source

fixed bug that prevented view exception from being shown.

Taylor Otwell 13 years ago
parent
commit
cda4567446
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/view.php

+ 1 - 1
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)