12 lines
No EOL
154 B
PHP
12 lines
No EOL
154 B
PHP
<?php
|
|
|
|
/**
|
|
* Displays a fatal message and stops execution.
|
|
*
|
|
* @param string $message
|
|
*/
|
|
function engelsystem_error($message) {
|
|
die($message);
|
|
}
|
|
|
|
?>
|