Fix error "mb_convert_encoding(): Illegal character encoding specified"
modified: plugins/af_readability/init.php
This commit is contained in:
parent
b0d67cd3d0
commit
7a4d5cc724
|
@ -180,7 +180,11 @@ class Af_Readability extends Plugin {
|
|||
// this is the worst hack yet :(
|
||||
if (strtolower($tmpdoc->encoding) != 'utf-8') {
|
||||
$tmp = preg_replace("/<meta.*?charset.*?\/?>/i", "", $tmp);
|
||||
$tmp = mb_convert_encoding($tmp, 'utf-8', $tmpdoc->encoding);
|
||||
if (empty($tmpdoc->encoding)) {
|
||||
$tmp = mb_convert_encoding($tmp, 'utf-8');
|
||||
} else {
|
||||
$tmp = mb_convert_encoding($tmp, 'utf-8', $tmpdoc->encoding);
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue