[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-15905-g5e860f1

The branch, master has been updated via 5e860f187467162b2995c48feaff6689ba1accd2 (commit) from 941c186d27b3bf6a708ce182399cea4ab6f17474 (commit) - Log ----------------------------------------------------------------- commit 5e860f187467162b2995c48feaff6689ba1accd2 Author: Piotr Przybylski <piotrprz@gmail.com> Date: Fri Aug 19 18:24:04 2011 +0200 Fix usage of PMA_DBI_get_columns in tbl_change.php ----------------------------------------------------------------------- Summary of changes: tbl_change.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tbl_change.php b/tbl_change.php index bf0704a..e7011eb 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -165,7 +165,7 @@ unset($show_create_table); * Get the list of the fields of the current table */ PMA_DBI_select_db($db); -$table_fields = PMA_DBI_get_columns($db, $table); +$table_fields = array_values(PMA_DBI_get_columns($db, $table)); $rows = array(); if (isset($where_clause)) { // when in edit mode load all selected rows from table hooks/post-receive -- phpMyAdmin
participants (1)
-
Piotr Przybylski