From 3a0e75764027a67289dd497afe1b75da7e558f6f Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 26 Dec 2010 07:14:16 -0500 Subject: [PATCH] Remove code that has never been used --- tbl_select.php | 21 --------------------- 1 file changed, 21 deletions(-) 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); ?> -