This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Displays a fatal message and stops execution.
|
|
|
|
*
|
|
|
|
* @param string $message
|
|
|
|
*/
|
|
|
|
function engelsystem_error($message)
|
|
|
|
{
|
|
|
|
raw_output($message);
|
|
|
|
}
|