charset and db names
This commit is contained in:
@@ -13,6 +13,8 @@ $Source$
|
|||||||
* Documentation.html: update the persons/towns/countries example
|
* Documentation.html: update the persons/towns/countries example
|
||||||
* sql.php3, tbl_properties_table_info.php3: sub-page links on browse
|
* sql.php3, tbl_properties_table_info.php3: sub-page links on browse
|
||||||
* lang/japanese* updates, thanks to Yukihiro Kawada
|
* lang/japanese* updates, thanks to Yukihiro Kawada
|
||||||
|
* libraries/mysql_wrappers.lib.php3 patch #574009, charset
|
||||||
|
conversion for db names, thanks to Michal Cihar_
|
||||||
|
|
||||||
2002-06-26 Olivier L. M<>ller <om@omnis.ch>
|
2002-06-26 Olivier L. M<>ller <om@omnis.ch>
|
||||||
* tbl_change.php3: display the submit button every 15 lines:
|
* tbl_change.php3: display the submit button every 15 lines:
|
||||||
|
@@ -66,9 +66,9 @@ if (!defined('PMA_MYSQL_WRAPPERS_LIB_INCLUDED')){
|
|||||||
|
|
||||||
function PMA_mysql_list_fields($database_name, $table_name, $link_identifier = FALSE) {
|
function PMA_mysql_list_fields($database_name, $table_name, $link_identifier = FALSE) {
|
||||||
if ($link_identifier != FALSE) {
|
if ($link_identifier != FALSE) {
|
||||||
return mysql_list_fields($database_name, PMA_convert_charset($table_name), $link_identifier);
|
return mysql_list_fields(PMA_convert_charset($database_name), PMA_convert_charset($table_name), $link_identifier);
|
||||||
} else {
|
} else {
|
||||||
return mysql_list_fields($database_name, PMA_convert_charset($table_name));
|
return mysql_list_fields(PMA_convert_charset($database_name), PMA_convert_charset($table_name));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user