bugfix
This commit is contained in:
@@ -79,18 +79,17 @@ if (!defined('PMA_ENCODING_LIB_INCLUDED')) {
|
|||||||
if ($enc == '' && $kana == '') {
|
if ($enc == '' && $kana == '') {
|
||||||
return $str;
|
return $str;
|
||||||
}
|
}
|
||||||
|
|
||||||
$nw = mb_detect_encoding($str, $enc_list);
|
$nw = mb_detect_encoding($str, $enc_list);
|
||||||
|
|
||||||
if ($kana == 'kana') {
|
if ($kana == 'kana') {
|
||||||
$dist = mb_convert_kana($str, 'KV', $nw);
|
$dist = mb_convert_kana($str, 'KV', $nw);
|
||||||
$str = $dist;
|
$str = $dist;
|
||||||
}
|
}
|
||||||
if ($nw != $enc && $enc) {
|
if ($nw != $enc && $enc != '') {
|
||||||
$dist = mb_convert_encoding($str, $enc, $nw);
|
$dist = mb_convert_encoding($str, $enc, $nw);
|
||||||
} else {
|
} else {
|
||||||
$dist = $str;
|
$dist = $str;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $dist;
|
return $dist;
|
||||||
} // end of the 'PMA_kanji_str_conv' function
|
} // end of the 'PMA_kanji_str_conv' function
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user