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,8 +180,12 @@ class Af_Readability extends Plugin {
|
||||||
// this is the worst hack yet :(
|
// this is the worst hack yet :(
|
||||||
if (strtolower($tmpdoc->encoding) != 'utf-8') {
|
if (strtolower($tmpdoc->encoding) != 'utf-8') {
|
||||||
$tmp = preg_replace("/<meta.*?charset.*?\/?>/i", "", $tmp);
|
$tmp = preg_replace("/<meta.*?charset.*?\/?>/i", "", $tmp);
|
||||||
|
if (empty($tmpdoc->encoding)) {
|
||||||
|
$tmp = mb_convert_encoding($tmp, 'utf-8');
|
||||||
|
} else {
|
||||||
$tmp = mb_convert_encoding($tmp, 'utf-8', $tmpdoc->encoding);
|
$tmp = mb_convert_encoding($tmp, 'utf-8', $tmpdoc->encoding);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$r = new Readability(new Configuration());
|
$r = new Readability(new Configuration());
|
||||||
|
|
Loading…
Reference in New Issue