@@ -2632,7 +2632,6 @@ function PMA_getHtmlForInsertEditFormHeader($has_blob_field, $is_upload)
26322632 *
26332633 * @param array $table_columns table columns
26342634 * @param int $i row counter
2635- * @param array $column column
26362635 * @param array $comments_map comments map
26372636 * @param bool $timestamp_seen whether timestamp seen
26382637 * @param array $current_result current result
@@ -2664,16 +2663,16 @@ function PMA_getHtmlForInsertEditFormHeader($has_blob_field, $is_upload)
26642663 *
26652664 * @return string
26662665 */
2667- function PMA_getHtmlForInsertEditFormColumn ($ table_columns , $ i , $ column ,
2666+ function PMA_getHtmlForInsertEditFormColumn ($ table_columns , $ i ,
26682667 $ comments_map , $ timestamp_seen , $ current_result , $ chg_evt_handler ,
26692668 $ jsvkey , $ vkey , $ insert_mode , $ current_row , $ odd_row , &$ o_rows ,
26702669 &$ tabindex , $ columns_cnt , $ is_upload , $ tabindex_for_function ,
26712670 $ foreigners , $ tabindex_for_null , $ tabindex_for_value , $ table , $ db ,
26722671 $ row_id , $ titles , $ biggest_max_file_size , $ default_char_editing ,
26732672 $ text_dir , $ repopulate , $ column_mime , $ where_clause
26742673) {
2675- if (! isset ( $ table_columns [$ i ][ ' processed ' ])) {
2676- $ column = $ table_columns [ $ i ];
2674+ $ column = $ table_columns [$ i ];
2675+ if (! isset ( $ column[ ' processed ' ])) {
26772676 $ column = PMA_analyzeTableColumnsArray (
26782677 $ column , $ comments_map , $ timestamp_seen
26792678 );
@@ -2860,7 +2859,6 @@ function PMA_getHtmlForInsertEditFormColumn($table_columns, $i, $column,
28602859 *
28612860 * @param array $url_params url parameters
28622861 * @param array $table_columns table columns
2863- * @param array $column column
28642862 * @param array $comments_map comments map
28652863 * @param bool $timestamp_seen whether timestamp seen
28662864 * @param array $current_result current result
@@ -2889,7 +2887,7 @@ function PMA_getHtmlForInsertEditFormColumn($table_columns, $i, $column,
28892887 * @return string
28902888 */
28912889function PMA_getHtmlForInsertEditRow ($ url_params , $ table_columns ,
2892- $ column , $ comments_map , $ timestamp_seen , $ current_result , $ chg_evt_handler ,
2890+ $ comments_map , $ timestamp_seen , $ current_result , $ chg_evt_handler ,
28932891 $ jsvkey , $ vkey , $ insert_mode , $ current_row , &$ o_rows , &$ tabindex , $ columns_cnt ,
28942892 $ is_upload , $ tabindex_for_function , $ foreigners , $ tabindex_for_null ,
28952893 $ tabindex_for_value , $ table , $ db , $ row_id , $ titles ,
@@ -2912,7 +2910,7 @@ function PMA_getHtmlForInsertEditRow($url_params, $table_columns,
29122910 $ column_mime = $ mime_map [$ table_columns [$ i ]['Field ' ]];
29132911 }
29142912 $ html_output .= PMA_getHtmlForInsertEditFormColumn (
2915- $ table_columns , $ i , $ column , $ comments_map , $ timestamp_seen ,
2913+ $ table_columns , $ i , $ comments_map , $ timestamp_seen ,
29162914 $ current_result , $ chg_evt_handler , $ jsvkey , $ vkey , $ insert_mode ,
29172915 $ current_row , $ odd_row , $ o_rows , $ tabindex , $ columns_cnt , $ is_upload ,
29182916 $ tabindex_for_function , $ foreigners , $ tabindex_for_null ,
0 commit comments