Merge pull request #23991 from owncloud/handle-exceptions-in-templates
Properly handle exception within templates
This commit is contained in:
commit
0cff70bb90
|
@ -168,8 +168,13 @@ class Base {
|
|||
|
||||
// Include
|
||||
ob_start();
|
||||
try {
|
||||
include $file;
|
||||
$data = ob_get_contents();
|
||||
} catch (\Exception $e) {
|
||||
@ob_end_clean();
|
||||
throw $e;
|
||||
}
|
||||
@ob_end_clean();
|
||||
|
||||
// Return data
|
||||
|
|
Loading…
Reference in New Issue