phpMyAdmin should now be fully compatible with the new mysqli extension.

This commit is contained in:
Marcel Tschopp
2004-04-08 12:30:40 +00:00
parent 313a06cce2
commit 74cc95fe29
11 changed files with 116 additions and 105 deletions

View File

@@ -434,7 +434,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query)
if (isset($analyzed_sql[0]['select_expr'][$j]['column'])) {
$field_set[$j] = PMA_backquote($analyzed_sql[0]['select_expr'][$j]['column'], $use_backquotes);
} else {
$field_set[$j] = PMA_backquote(PMA_mysql_field_name($result, $j), $use_backquotes); //! UNWRAPPED FUNCTION!
$field_set[$j] = PMA_backquote(PMA_DBI_field_name($result, $j), $use_backquotes);
}
$type = $field_types[$field_set[$j]];