10000
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 370ae4e commit 08c3a7eCopy full SHA for 08c3a7e
library/HTML5/InputStream.php
@@ -73,7 +73,7 @@ public function __construct($data) {
73
// omitted.
74
if (extension_loaded('iconv')) {
75
// non-conforming
76
- $data = iconv('UTF-8', 'UTF-8//IGNORE', $data);
+ $data = @iconv('UTF-8', 'UTF-8//IGNORE', $data);
77
} else {
78
// we can make a conforming native implementation
79
throw new Exception('Not implemented, please install mbstring or iconv');
0 commit comments