From 8442149986d993150c9c9878e51c00b704198329 Mon Sep 17 00:00:00 2001 From: skjnldsv Date: Fri, 10 Jul 2026 08:50:24 +0200 Subject: [PATCH] fix(systemtags): correct @since tag for sanitizeWordsAndEmojis The Util::sanitizeWordsAndEmojis helper is being backported to stable34 (34.0.2), so the public API is first available in 34.0.2, not 35.0.0. Signed-off-by: skjnldsv Assisted-by: ClaudeCode:claude-opus-4-8 --- lib/public/Util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/public/Util.php b/lib/public/Util.php index 0a60282412079..aa030b6327f37 100644 --- a/lib/public/Util.php +++ b/lib/public/Util.php @@ -638,7 +638,7 @@ public static function isFunctionEnabled(string $functionName): bool { * * @param string $input The input string to sanitize * @return string The sanitized string - * @since 35.0.0 + * @since 34.0.2 */ public static function sanitizeWordsAndEmojis(string $input): string { // Remove control characters and other invisible separators, but keep everything else.