diff --git a/typo3/sysext/core/Classes/Charset/CharsetConverter.php b/typo3/sysext/core/Classes/Charset/CharsetConverter.php index b38e460925104050cb0c291f7be10806e89f6ef5..e77a1dae1136bdaa8784a944786c511e5c73a7da 100644 --- a/typo3/sysext/core/Classes/Charset/CharsetConverter.php +++ b/typo3/sysext/core/Classes/Charset/CharsetConverter.php @@ -442,7 +442,7 @@ class CharsetConverter implements SingletonInterface // Detect type if not done yet: (Done on first real line) // The "whitespaced" type is on the syntax "0x0A 0x000A #LINE FEED" while "ms-token" is like "B9 = U+00B9 : SUPERSCRIPT ONE" if (!$detectedType) { - $detectedType = preg_match('/[[:space:]]*0x([[:alnum:]]*)[[:space:]]+0x([[:alnum:]]*)[[:space:]]+/', $value) ? 'whitespaced' : 'ms-token'; + $detectedType = preg_match('/[[:space:]]*0x([[:xdigit:]]*)[[:space:]]+0x([[:xdigit:]]*)[[:space:]]+/', $value) ? 'whitespaced' : 'ms-token'; } $hexbyte = ''; $utf8 = ''; @@ -450,7 +450,7 @@ class CharsetConverter implements SingletonInterface [$hexbyte, $utf8] = preg_split('/[=:]/', $value, 3); } elseif ($detectedType === 'whitespaced') { $regA = []; - preg_match('/[[:space:]]*0x([[:alnum:]]*)[[:space:]]+0x([[:alnum:]]*)[[:space:]]+/', $value, $regA); + preg_match('/[[:space:]]*0x([[:xdigit:]]*)[[:space:]]+0x([[:xdigit:]]*)[[:space:]]+/', $value, $regA); $hexbyte = $regA[1]; $utf8 = 'U+' . $regA[2]; }