Merge pull request #11819 from fabrixxm/fix/wsod
Fix WSOD when Renderer throws exception
This commit is contained in:
commit
d847d155ee
1 changed files with 11 additions and 2 deletions
|
@ -70,8 +70,17 @@ class HTTPException
|
||||||
$content = '';
|
$content = '';
|
||||||
|
|
||||||
if ($e->getCode() >= 400) {
|
if ($e->getCode() >= 400) {
|
||||||
$tpl = Renderer::getMarkupTemplate('http_status.tpl');
|
$vars = self::getVars($e);
|
||||||
$content = Renderer::replaceMacros($tpl, self::getVars($e));
|
try {
|
||||||
|
$tpl = Renderer::getMarkupTemplate('http_status.tpl');
|
||||||
|
$content = Renderer::replaceMacros($tpl, $vars);
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
$content = "<h1>{$vars['$title']}</h1><p>{$vars['$message']}</p>";
|
||||||
|
if (DI::app()->isSiteAdmin()) {
|
||||||
|
$content .= "<p>{$vars['$thrown']}</p>";
|
||||||
|
$content .= "<pre>{$vars['$trace']}</pre>";
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
System::httpError($e->getCode(), $e->getDescription(), $content);
|
System::httpError($e->getCode(), $e->getDescription(), $content);
|
||||||
|
|
Loading…
Reference in a new issue