Japanese kanji encoding conversion feature thanks to Yukihiro Kawada

This commit is contained in:
Loïc Chapeaux
2002-02-24 18:46:40 +00:00
parent 907af92ab4
commit b106eb60d1
13 changed files with 258 additions and 10 deletions

View File

@@ -1024,5 +1024,14 @@ window.parent.frames['nav'].location.replace('<?php echo $reload_url; ?>');
return strftime($date, $timestamp);
} // end of the 'PMA_localisedDate()' function
// Kanji encoding convert feature appended by Y.Kawada (2002/2/20)
if (PMA_PHP_INT_VERSION >= 40006
&& @function_exists('mb_convert_encoding')
&& strpos(' ' . $lang, 'ja-')
&& file_exists('./libraries/kanji-encoding.lib.php3')) {
include('./libraries/kanji-encoding.lib.php3');
} // end if
} // $__PMA_COMMON_LIB__
?>