mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-03 00:06:40 +00:00
11 lines
145 B
PHP
Executable File
11 lines
145 B
PHP
Executable File
<?php
|
|
|
|
header(Php::Status(500));
|
|
|
|
ob_start();
|
|
IncludeCom('_500');
|
|
$content = ob_get_clean();
|
|
|
|
echo $content;
|
|
exit;
|
|
?>
|