mirror of
https://github.com/voc/streaming-website
synced 2024-11-10 14:44:21 +00:00
10 lines
182 B
PHP
10 lines
182 B
PHP
<?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(),
|
|
));
|