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 2c1cc00 commit e18c5c4Copy full SHA for e18c5c4
Parser/Tokenizer/TokenizerEscaping.php
@@ -73,6 +73,8 @@ private function replaceUnicodeSequences($value)
73
if (0x10000 > $c) {
74
return \chr(0xE0 | $c >> 12).\chr(0x80 | $c >> 6 & 0x3F).\chr(0x80 | $c & 0x3F);
75
}
76
+
77
+ return '';
78
}, $value);
79
80
0 commit comments