Fix error "mb_convert_encoding(): Illegal character encoding specified"

modified:   plugins/af_readability/init.php
This commit is contained in:
Aleksandr Beliaev 2019-09-13 09:52:40 +12:00
parent b0d67cd3d0
commit 7a4d5cc724
1 changed files with 5 additions and 1 deletions

View File

@ -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 {