undefined field_collation under MySQL 4.0.x

This commit is contained in:
Marc Delisle
2005-10-13 17:17:12 +00:00
parent bb48c5095f
commit 07b5c799cf
2 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2005-10-13 Marc Delisle <lem9@users.sourceforge.net>
* tbl_addfield.php: undefined $field_collation under MySQL 4.0.x
2005-10-13 Michal Čihař <michal@cihar.com> 2005-10-13 Michal Čihař <michal@cihar.com>
* Documentation.html: Fix URL rewriting not to match empty parts. * Documentation.html: Fix URL rewriting not to match empty parts.
* calendar.php, themes.php, libraries/auth/config.auth.lib.php, * calendar.php, themes.php, libraries/auth/config.auth.lib.php,

View File

@@ -57,7 +57,7 @@ if (isset($submit_num_fields)) {
continue; continue;
} }
$query .= PMA_generateFieldSpec($field_name[$i], $field_type[$i], $field_length[$i], $field_attribute[$i], $field_collation[$i], $field_null[$i], $field_default[$i], isset($field_default_current_timestamp[$i]), $field_extra[$i], isset($field_comments[$i]) ? $field_comments[$i] : '', $field_primary, $i); $query .= PMA_generateFieldSpec($field_name[$i], $field_type[$i], $field_length[$i], $field_attribute[$i], isset($field_collation[$i]) ? $field_collation[$i] : '', $field_null[$i], $field_default[$i], isset($field_default_current_timestamp[$i]), $field_extra[$i], isset($field_comments[$i]) ? $field_comments[$i] : '', $field_primary, $i);
if ($field_where != 'last') { if ($field_where != 'last') {
// Only the first field can be added somewhere other than at the end // Only the first field can be added somewhere other than at the end