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

@@ -732,6 +732,11 @@ if ($is_upload) {
} // end if
echo "\n";
// Encoding setting form appended by Y.Kawada
if (function_exists('PMA_set_enc_form')) {
echo PMA_set_enc_form(' ');
}
// Bookmark Support
if ($cfgBookmark['db'] && $cfgBookmark['table']) {
if (($bookmark_list = PMA_listBookmarks($db, $cfgBookmark)) && count($bookmark_list) > 0) {
@@ -898,6 +903,12 @@ if (PMA_PHP_INT_VERSION >= 40004) {
}
}
echo "\n";
// Encoding setting form appended by Y.Kawada
if (function_exists('PMA_set_enc_form')) {
echo '<br />' . "\n"
. PMA_set_enc_form(' ');
}
?>
</td>
</tr>