diff --git a/ChangeLog b/ChangeLog index cc0f9941e..caef030a4 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2005-01-06 Marc Delisle + * tbl_change.php: removed old PHP3-workaround that caused problems + with field names like '000' + 2005-01-05 Michal Čihař * tbl_properties_operations.php: Fix changning table parameters if it has no auto increment (bug #1096246). diff --git a/tbl_change.php b/tbl_change.php index 2ee1b9f7b..33ec32557 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -280,14 +280,9 @@ foreach ($loop_array AS $vrowcount => $vrow) { $field = $row_table_def['Field']; - // garvin: possible workaround. If current field is numerical, do not try to - // access the result-array with its 'associative' key but with its numerical - // represantation. - if (is_numeric($field)) { - $rowfield = $i; - } else { - $rowfield = $field; - } + // removed previous PHP3-workaround that caused a problem with + // field names like '000' + $rowfield = $field; // d a t e t i m e //