From 732f456413428e746141e34037e4b0ce0088f7fd Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Wed, 17 May 2023 15:33:27 +0200 Subject: prevent errors in it::error --- it.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'it.class') diff --git a/it.class b/it.class index 81e1bd4..7b4b614 100644 --- a/it.class +++ b/it.class @@ -269,7 +269,7 @@ static function error($p = array(), $extra = null) $p['body'] = is_string($p['body']) || !array_key_exists('body', $p) ? $p['body'] : it_debug::dump([$p['body']], ['html' => false, 'short' => true, 'color' => false]); if (strlen($p['body']) > 500000 || it::match('[\x00-\x08\x0E-\x1F]', $p['body'], ['utf8' => false]) !== null) { - file_put_contents($datafn = "$home/tmp/error-" . substr(md5($p['body']), 0, 2), $p['body']); # NOPHPLINT + @it::file_put_contents($datafn = "$home/tmp/error-" . substr(md5($p['body']), 0, 2), $p['body']); # NOPHPLINT $p['body'] = " See " . getenv('HOSTNAME') . ":$datafn"; } -- cgit v1.2.3