Edited system/view.php via GitHub

This commit is contained in:
Dave Rowe 2011-08-18 17:11:23 -05:00
parent 766e54aa2d
commit b5f7f6648c
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ public function get()
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();
}