summaryrefslogtreecommitdiff
path: root/it.class
diff options
context:
space:
mode:
authorUrban Müller2021-06-17 17:41:45 +0200
committerUrban Müller2021-06-17 17:41:45 +0200
commit7003b47cc2654bff679a44bccd0ff8d57528378d (patch)
tree5555f27e8fa7a4ab1d795355a49452b8134d1238 /it.class
parentd010a9e036f9ed4b8bcd4674e1e99bde7ecf081e (diff)
downloaditools-7003b47cc2654bff679a44bccd0ff8d57528378d.tar.gz
itools-7003b47cc2654bff679a44bccd0ff8d57528378d.tar.bz2
itools-7003b47cc2654bff679a44bccd0ff8d57528378d.zip
support testing for errs
Diffstat (limited to 'it.class')
-rw-r--r--it.class4
1 files changed, 4 insertions, 0 deletions
diff --git a/it.class b/it.class
index 02f17fb..4ef56b6 100644
--- a/it.class
+++ b/it.class
@@ -164,6 +164,10 @@ static function error($p = array(), $extra = null)
$p['title'] = $p[0] ?: $p['title']; # handle 'it_error' => "oops" that was cast to array on the way
$p['title'] = grapheme_substr($p['title'], 0, 2000) ?: substr($p['title'], 0, 2000);
+ $GLOBALS['ULTRAERROR'] = $p['title'];
+ if ($GLOBALS['ULTRANOERRORS'])
+ return null;
+
if ($extra)
$p = ['title' => 'extraneous params passed to it::error', 'fatal' => $p['fatal']];