Browse Source

Merge pull request #59 from drowe/master

view.php - Exception / Error handling change
Taylor Otwell 13 years ago
parent
commit
399892ddda
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/view.php

+ 1 - 1
system/view.php

@@ -168,7 +168,7 @@ class View {
 
 		ob_start() and extract($this->data, EXTR_SKIP);
 
-		try { include $this->path.$view.EXT; } catch (\Exception $e) { Error::handle($e); }
+		try { include $this->path.$view.EXT; } catch (\Exception $e) { Exception\Handler::make($e)->handle(); }
 
 		return ob_get_clean();
 	}