Properly handle exception within templates
* fixes partial printed templates when exception is thrown in between
This commit is contained in:
parent
54f6c05c79
commit
12f1adb7bb
1 changed files with 7 additions and 2 deletions
|
@ -168,8 +168,13 @@ class Base {
|
|||
|
||||
// Include
|
||||
ob_start();
|
||||
include $file;
|
||||
$data = ob_get_contents();
|
||||
try {
|
||||
include $file;
|
||||
$data = ob_get_contents();
|
||||
} catch (\Exception $e) {
|
||||
@ob_end_clean();
|
||||
throw $e;
|
||||
}
|
||||
@ob_end_clean();
|
||||
|
||||
// Return data
|
||||
|
|
Loading…
Reference in a new issue