summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2018-07-21 23:10:05 -0400
committerMalf Furious <m@lfurio.us>2018-07-21 23:10:05 -0400
commit72ba54e1224ef815f8f7dabdf0c7449b120cfc4c (patch)
tree7d7d334a828b1134050bb185ca544623d14c4abd
parent41edfa2f7c85d657ff41ba146bd45de84373281c (diff)
downloadscrott-72ba54e1224ef815f8f7dabdf0c7449b120cfc4c.tar.gz
scrott-72ba54e1224ef815f8f7dabdf0c7449b120cfc4c.zip
Change errorlevel constants
-rw-r--r--app/class/globals.php6
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();