From 007ed5dbc6aac41ecbf020484b4ccf401f2a86fc Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Mon, 29 Jun 2020 15:23:49 +0200 Subject: remove unnecessary err messages elsewhere --- it.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it.class b/it.class index 7b9e31f..fe86471 100644 --- a/it.class +++ b/it.class @@ -719,7 +719,7 @@ static function _exec_quotevalue($value, $errmsg = "") if (it::match('^-', $result)) it::fatal("leading - in value: " . $errmsg); - return preg_match('#^[-a-zA-Z0-9./_:,]+$#', $result) ? $result : @escapeshellarg($result); # avoid reporting null bytes + return preg_match('#^[-a-zA-Z0-9./_:,]+$#', $result) ? $result : escapeshellarg($result); } -- cgit v1.2.3