summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUrban Müller2026-02-03 18:17:48 +0100
committerUrban Müller2026-02-03 18:17:48 +0100
commitfb044542ac0a8eaed4ec8750161fe748b0f88cbe (patch)
tree9e0be6fe3fe0b2bac97ffc8330191a124679ea3f
parent28fafec84397f2a8375a7eebc5101b44be8521b7 (diff)
downloaditools-master.tar.gz
itools-master.tar.bz2
itools-master.zip
Revert "known problem, reduce utf8 err messages"HEADmaster
This reverts commit cddd3d82295984828d2a22e0ec31b7b9cf856289.
-rw-r--r--it.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/it.class b/it.class
index 8793d84..11641d7 100644
--- a/it.class
+++ b/it.class
@@ -611,7 +611,7 @@ static function any2utf8($value, $errprefix = "")
$value = preg_replace('/\xc2\xad/', '', $value); # Kill invisible soft hyphens
$value = normalizer_normalize($value, Normalizer::FORM_C);
if ($error && $errprefix)
- it::error(['title' => "$errprefix: " . trim($error), 'blockmailid' => "it_any2utf8", 'blockmail' => 2*86400]); # FIXME 2026-02 UM revert suppression
+ it::error(array('title' => "$errprefix: " . trim($error)));
}
return $value;