diff options
author | Malf Furious <m@lfurio.us> | 2018-07-21 23:10:05 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-07-21 23:10:05 -0400 |
commit | 72ba54e1224ef815f8f7dabdf0c7449b120cfc4c (patch) | |
tree | 7d7d334a828b1134050bb185ca544623d14c4abd /app/class/globals.php | |
parent | 41edfa2f7c85d657ff41ba146bd45de84373281c (diff) | |
download | scrott-72ba54e1224ef815f8f7dabdf0c7449b120cfc4c.tar.gz scrott-72ba54e1224ef815f8f7dabdf0c7449b120cfc4c.zip |
Change errorlevel constants
Diffstat (limited to 'app/class/globals.php')
-rw-r--r-- | app/class/globals.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/class/globals.php b/app/class/globals.php index 8d27ae4..ab82edd 100644 --- a/app/class/globals.php +++ b/app/class/globals.php @@ -26,9 +26,9 @@ define("__VERSION__", "v0.0"); * logic to report errors, warnings, or informational responses to the * user in cases where an exception doesn't need to be thrown. */ -define("ERROR", "errorlist"); -define("WARNING", "warninglist"); -define("NOTICE", "noticelist"); +define("ERROR", "ERROR_LIST"); +define("WARNING", "WARNING_LIST"); +define("NOTICE", "NOTICE_LIST"); $_SCROTT[ERROR] = array(); $_SCROTT[WARNING] = array(); |