Name of column is sometimes Default (bug #798426).
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2003-09-01 Michal Cihar <nijel@users.sourceforge.net>
|
||||
* libraries/mysql_charsets.lib.php3: Name of column is sometimes Default
|
||||
(bug #798426).
|
||||
|
||||
2003-08-31 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* libraries/sqlparser.lib.php3: extract ON DELETE, ON UPDATE for FOREIGN KEYs
|
||||
* libraries/relation.lib.php3: populate $foreign with ON DELETE, ON UPDATE
|
||||
|
@@ -35,7 +35,7 @@ if (!defined('PMA_MYSQL_CHARSETS_LIB_INCLUDED')){
|
||||
} else {
|
||||
$mysql_collations[$row['Charset']][] = $row['Collation'];
|
||||
}
|
||||
if ($row['D'] == 'Y') {
|
||||
if ((isset($row['D']) && $row['D'] == 'Y') || (isset($row['Default']) && $row['Default'] == 'Yes')) {
|
||||
$mysql_default_collations[$row['Charset']] = $row['Collation'];
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user