bug #1069012, table collation forgotten when adding fields

This commit is contained in:
Marc Delisle
2005-05-11 08:39:37 +00:00
parent 80b93cc829
commit 3efb91f103
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2005-05-11 Marc Delisle <lem9@users.sourceforge.net>
* tbl_properties.inc.php: bug #1069012, table collation forgotten
when adding fields
2005-05-10 Marc Delisle <lem9@users.sourceforge.net>
* libraries/sqlparser.lib.php: bug #1198156, undefined variable
when exporting without enclosing with backquotes

View File

@@ -669,7 +669,7 @@ if ($action == 'tbl_create.php') {
if (PMA_MYSQL_INT_VERSION >= 40100) {
echo ' <td width="25">&nbsp;</td>' . "\n"
. ' <td>' . "\n"
. PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_COLLATION, 'tbl_collation', NULL, NULL, FALSE, 3)
. PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_COLLATION, 'tbl_collation', NULL, (isset($tbl_collation) ? $tbl_collation : NULL), FALSE, 3)
. ' </td>' . "\n";
}
}