graphonline/src/500.php
2017-04-15 01:34:36 +03:00

11 lines
145 B
PHP
Executable File

<?php
header(Php::Status(500));
ob_start();
IncludeCom('_500');
$content = ob_get_clean();
echo $content;
exit;
?>