We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5ad54b commit 83b6984Copy full SHA for 83b6984
CSSParser.php
@@ -186,7 +186,7 @@ private function parseCharacter($bIsForIdentifier) {
186
187
$sUtf16 = pack("H*" , $sUtf16Bytes);
188
189
- $result = iconv('utf-16', $this->sCharset, $sUtf16);
+ $result = iconv('utf-16', $this->sCharset . '//IGNORE', $sUtf16);
190
// use utf-16 big endian character set for the check, as we do not want a leading Byte Order Mark
191
$check = iconv($this->sCharset, 'utf-16be', $result);
192
if ($check !== $sUtf16) {
0 commit comments