bug #1349262, use Storage Engine

This commit is contained in:
Marc Delisle
2005-12-21 19:56:49 +00:00
parent 578c6dbc66
commit dc649ba056
3 changed files with 8 additions and 4 deletions

View File

@@ -8,6 +8,9 @@ $Source$
2005-12-21 Marc Delisle <lem9@users.sourceforge.net>
* lang/danish: Updated, thanks to AlleyKat - dk_alleykat
* lang/hungarian update, thanks to Mihály Mészáros <necronix@freemail.hu>
* tbl_properties_operations.php, libraries/tbl_properties.inc.php:
bug #1349262, mismatch between PMA and MySQL about Storage Engine
and table type
2005-12-20 Marc Delisle <lem9@users.sourceforge.net>
* libraries/common.lib.php: does not return to correct page after

View File

@@ -638,7 +638,8 @@ if ($action == 'tbl_create.php') {
<tr valign="top">
<th><?php echo $strTableComments; ?>:&nbsp;</th>
<td width="25">&nbsp;</td>
<th><?php echo $strTableType; ?>:&nbsp;</th>
<th><?php echo $strStorageEngine; ?>:&nbsp;<?php echo PMA_showMySQLDocu('Storage_engines', 'Storage_engines'); ?>
</th>
<?php
if ( PMA_MYSQL_INT_VERSION >= 40100 ) {
echo ' <td width="25">&nbsp;</td>' . "\n"

View File

@@ -251,9 +251,9 @@ if (strstr($show_comment, '; InnoDB free') === false) {
</td>
</tr>
<!-- Table type -->
<tr><td><?php echo $strTableType; ?>
<?php echo PMA_showMySQLDocu('Table_types', 'Table_types'); ?>
<!-- Storage engine -->
<tr><td><?php echo $strStorageEngine; ?>
<?php echo PMA_showMySQLDocu('Storage_engines', 'Storage_engines'); ?>
</td>
<td><?php echo PMA_generateEnginesDropdown('new_tbl_type', null, false, $tbl_type, 4); ?>
</td>