summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUrban Müller2026-01-06 16:25:20 +0100
committerUrban Müller2026-01-06 16:25:20 +0100
commitcddd3d82295984828d2a22e0ec31b7b9cf856289 (patch)
tree7464c0ee250590619c2b210e39a0af7c8a407b83
parentdd96b0f34469f1581f6cc0a9be094bc17953f7c9 (diff)
downloaditools-cddd3d82295984828d2a22e0ec31b7b9cf856289.tar.gz
itools-cddd3d82295984828d2a22e0ec31b7b9cf856289.tar.bz2
itools-cddd3d82295984828d2a22e0ec31b7b9cf856289.zip
known problem, reduce utf8 err messagesHEADmaster
-rw-r--r--it.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/it.class b/it.class
index 11641d7..8793d84 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(array('title' => "$errprefix: " . trim($error)));
+ it::error(['title' => "$errprefix: " . trim($error), 'blockmailid' => "it_any2utf8", 'blockmail' => 2*86400]); # FIXME 2026-02 UM revert suppression
}
return $value;