diff --git a/tbl_select.php b/tbl_select.php index 1542dba93..a680c86b8 100644 --- a/tbl_select.php +++ b/tbl_select.php @@ -60,7 +60,6 @@ if (!isset($param) || $param[0] == '') { // Gets the list and number of fields $result = PMA_DBI_query('SHOW FULL FIELDS FROM ' . PMA_backquote($table) . ' FROM ' . PMA_backquote($db) . ';', null, PMA_DBI_QUERY_STORE); $fields_cnt = PMA_DBI_num_rows($result); - // rabue: we'd better ensure, that all arrays are empty. $fields_list = $fields_null = $fields_type = $fields_collation = array(); while ($row = PMA_DBI_fetch_assoc($result)) { $fields_list[] = $row['Field']; @@ -98,26 +97,6 @@ if (!isset($param) || $param[0] == '') { // foreign keys from innodb) $foreigners = PMA_getForeigners($db, $table); ?> -