diff options
author | Philip Häusler <msquare@notrademark.de> | 2013-09-18 01:38:36 +0200 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2013-09-18 01:38:36 +0200 |
commit | bfb0cacd541cc20129a3c0ac77130370741dca18 (patch) | |
tree | 0a0e86e1a53d712065664c12d06603bc044df9ec /includes/helper/error_helper.php | |
parent | d50cc21f50cb3ec3afdabb74a20d81bd1a53dfbd (diff) |
mysql to mysqli and a lot of cleanup and mvc
Diffstat (limited to 'includes/helper/error_helper.php')
-rw-r--r-- | includes/helper/error_helper.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/includes/helper/error_helper.php b/includes/helper/error_helper.php new file mode 100644 index 00000000..d26485d6 --- /dev/null +++ b/includes/helper/error_helper.php @@ -0,0 +1,11 @@ +<?php + +/** + * Displays a fatal message and stops execution. + * @param string $message + */ +function engelsystem_error($message) { + die($message); +} + +?>
\ No newline at end of file |