style(legacy): format CcFiles.php

This commit is contained in:
jo 2022-06-19 15:58:45 +02:00 committed by Kyle Robbertze
parent 70a31338f7
commit df3b4fccd4
1 changed files with 4 additions and 4 deletions

View File

@ -484,10 +484,10 @@ class CcFiles extends BaseCcFiles
// reject overly long 2 byte sequences, as well as characters above U+10000 and replace with ? // reject overly long 2 byte sequences, as well as characters above U+10000 and replace with ?
$string = preg_replace( $string = preg_replace(
'/[\x00-\x08\x10\x0B\x0C\x0E-\x19\x7F]' . '/[\x00-\x08\x10\x0B\x0C\x0E-\x19\x7F]' .
'|[\x00-\x7F][\x80-\xBF]+' . '|[\x00-\x7F][\x80-\xBF]+' .
'|([\xC0\xC1]|[\xF0-\xFF])[\x80-\xBF]*' . '|([\xC0\xC1]|[\xF0-\xFF])[\x80-\xBF]*' .
'|[\xC2-\xDF]((?![\x80-\xBF])|[\x80-\xBF]{2,})' . '|[\xC2-\xDF]((?![\x80-\xBF])|[\x80-\xBF]{2,})' .
'|[\xE0-\xEF](([\x80-\xBF](?![\x80-\xBF]))|(?![\x80-\xBF]{2})|[\x80-\xBF]{3,})/S', '|[\xE0-\xEF](([\x80-\xBF](?![\x80-\xBF]))|(?![\x80-\xBF]{2})|[\x80-\xBF]{3,})/S',
'?', '?',
$string $string
); );