CommunityID/modules/default/views/scripts/error/error.phtml

19 lines
424 B
PHTML
Raw Normal View History

2019-07-17 20:08:50 +00:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Error</title>
</head>
<body>
<h2>An error occurred</h2>
<strong><?= $this->message ?></strong>
<? if ($this->trace): ?>
<pre>
Stack Trace:
<?= $this->trace ?>
</pre>
<? endif ?>
</body>
</html>