bug 1037744, cannot add field to table

This commit is contained in:
Marc Delisle
2004-09-30 17:09:23 +00:00
parent 09180e0e8b
commit d22bca00d9
2 changed files with 4 additions and 2 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2004-09-30 Marc Delisle <lem9@users.sourceforge.net>
* tbl_addfield.php: bug #1037744 (CVS version only): cannot add a field
2004-09-29 Marc Delisle <lem9@users.sourceforge.net> 2004-09-29 Marc Delisle <lem9@users.sourceforge.net>
* sql.php, libraries/common.lib.php: bug #1036678, incorrect appending * sql.php, libraries/common.lib.php: bug #1036678, incorrect appending
of LIMIT to queries, and bug #1037004, UPDATE statement not showing of LIMIT to queries, and bug #1037004, UPDATE statement not showing

View File

@@ -2,7 +2,6 @@
/* $Id$ */ /* $Id$ */
// vim: expandtab sw=4 ts=4 sts=4: // vim: expandtab sw=4 ts=4 sts=4:
/** /**
* Get some core libraries * Get some core libraries
*/ */
@@ -33,7 +32,7 @@ if (isset($submit_num_fields)) {
} }
$num_fields = $orig_num_fields + $added_fields; $num_fields = $orig_num_fields + $added_fields;
$regenerate = TRUE; $regenerate = TRUE;
} else if (isset($submit)) { } else if (isset($do_save_data)) {
$query = ''; $query = '';
// Transforms the radio button field_key into 3 arrays // Transforms the radio button field_key into 3 arrays