diff --git a/ChangeLog b/ChangeLog index 846287ab4..5b3f6492b 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2004-08-06 Michal Čihař + * tbl_change.php: Do not free result, we need it later. + 2004-08-05 Marc Delisle (Patches from Michael Keck) * index.php: names and ids for framesets in the noscript section diff --git a/tbl_change.php b/tbl_change.php index 520a7bbd2..1be586f65 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -92,7 +92,6 @@ if (isset($primary_key)) { $local_query = 'SELECT * FROM ' . PMA_backquote($table) . ' WHERE ' . $primary_key . ';'; $result[$rowcount] = PMA_DBI_query($local_query, NULL, PMA_DBI_QUERY_STORE); $row[$rowcount] = PMA_DBI_fetch_assoc($result[$rowcount]); - PMA_DBI_free_result($result[$rowcount]); $primary_keys[$rowcount] = $primary_key; // No row returned