diff options
Diffstat (limited to 'it.class')
-rw-r--r-- | it.class | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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']]; |