aboutsummaryrefslogtreecommitdiff
path: root/view/500.php
blob: 65191606159e59b6d500ca8e7dc910afcfd236c7 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

header("HTTP/1.1 500 Internal Server Error");
echo $tpl->render(array(
	'page' => '500',
	'title' => '500 Internal Server Error',

	'e' => $e,
	'msg' => $e->getMessage(),
));