Fixed an IE5.0 display bug and an other one with Mozilla
This commit is contained in:
@@ -348,9 +348,15 @@ if (MYSQL_MAJOR_VERSION == "3.23" && intval(MYSQL_MINOR_VERSION) > 3 && $tbl_typ
|
|||||||
<td align="right">
|
<td align="right">
|
||||||
<?php
|
<?php
|
||||||
echo ' ';
|
echo ' ';
|
||||||
if ($showtable['Row_format'] == 'Fixed') echo $strFixed;
|
if ($showtable['Row_format'] == 'Fixed') {
|
||||||
else if ($showtable['Row_format'] == 'Dynamic') echo $strDynamic;
|
echo $strFixed;
|
||||||
else echo $showtable['Row_format'];
|
}
|
||||||
|
else if ($showtable['Row_format'] == 'Dynamic') {
|
||||||
|
echo $strDynamic;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
echo $showtable['Row_format'];
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -369,13 +375,13 @@ if (MYSQL_MAJOR_VERSION == "3.23" && intval(MYSQL_MINOR_VERSION) > 3 && $tbl_typ
|
|||||||
</tr>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
if (isset($showtable['Avg_row_length']) && $showtable['Avg_row_length']>0) {
|
if (isset($showtable['Avg_row_length']) && $showtable['Avg_row_length'] > 0) {
|
||||||
echo (++$i%2)
|
echo (++$i%2)
|
||||||
? ' <tr bgcolor="' . $cfgBgcolorTwo . '">'
|
? ' <tr bgcolor="' . $cfgBgcolorTwo . '">'
|
||||||
: ' <tr bgcolor="' . $cfgBgcolorOne . '">';
|
: ' <tr bgcolor="' . $cfgBgcolorOne . '">';
|
||||||
echo "\n";
|
echo "\n";
|
||||||
?>
|
?>
|
||||||
<td><?php echo ucfirst($strRowLength) . ' ø'; ?></td>
|
<td><?php echo ucfirst($strRowLength); ?> ø</td>
|
||||||
<td align="right">
|
<td align="right">
|
||||||
<?php echo $showtable['Avg_row_length'] . "\n"; ?>
|
<?php echo $showtable['Avg_row_length'] . "\n"; ?>
|
||||||
</td>
|
</td>
|
||||||
@@ -388,8 +394,8 @@ if (MYSQL_MAJOR_VERSION == "3.23" && intval(MYSQL_MINOR_VERSION) > 3 && $tbl_typ
|
|||||||
: ' <tr bgcolor="' . $cfgBgcolorOne . '">';
|
: ' <tr bgcolor="' . $cfgBgcolorOne . '">';
|
||||||
echo "\n";
|
echo "\n";
|
||||||
?>
|
?>
|
||||||
<td><?php echo ucfirst($strRowSize) . ' ø'; ?></td>
|
<td><?php echo ucfirst($strRowSize); ?> ø</td>
|
||||||
<td align="right">
|
<td align="right" nowrap="nowrap">
|
||||||
<?php echo "$avg_size $avg_unit\n"; ?>
|
<?php echo "$avg_size $avg_unit\n"; ?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -401,7 +407,7 @@ if (MYSQL_MAJOR_VERSION == "3.23" && intval(MYSQL_MINOR_VERSION) > 3 && $tbl_typ
|
|||||||
: ' <tr bgcolor="' . $cfgBgcolorOne . '">';
|
: ' <tr bgcolor="' . $cfgBgcolorOne . '">';
|
||||||
echo "\n";
|
echo "\n";
|
||||||
?>
|
?>
|
||||||
<td><?php echo ucfirst($strNext) . ' Autoindex'; ?></td>
|
<td><?php echo ucfirst($strNext); ?> Autoindex</td>
|
||||||
<td align="right">
|
<td align="right">
|
||||||
<?php echo $showtable['Auto_increment'] . "\n"; ?>
|
<?php echo $showtable['Auto_increment'] . "\n"; ?>
|
||||||
</td>
|
</td>
|
||||||
@@ -618,7 +624,7 @@ echo "\n";
|
|||||||
<!-- Change table name and copy table -->
|
<!-- Change table name and copy table -->
|
||||||
<li style="vertical-align: top">
|
<li style="vertical-align: top">
|
||||||
<div style="margin-bottom: 10px">
|
<div style="margin-bottom: 10px">
|
||||||
<table border="0" cellspacing="0" cellpadding="0">
|
<table border="0" cellspacing="0" cellpadding="0" style="vertical-align: top">
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top">
|
<td valign="top">
|
||||||
<form method="post" action="tbl_rename.php3">
|
<form method="post" action="tbl_rename.php3">
|
||||||
@@ -691,7 +697,7 @@ if (MYSQL_MAJOR_VERSION == '3.23' && intval(MYSQL_MINOR_VERSION) >= 22) {
|
|||||||
<!-- Table maintenance -->
|
<!-- Table maintenance -->
|
||||||
<li style="vertical-align: top">
|
<li style="vertical-align: top">
|
||||||
<div style="margin-bottom: 10px">
|
<div style="margin-bottom: 10px">
|
||||||
<table border="0" cellspacing="0" cellpadding="0">
|
<table border="0" cellspacing="0" cellpadding="0" style="vertical-align: top">
|
||||||
<tr>
|
<tr>
|
||||||
<td><?php echo $strTableMaintenance; ?> : </td>
|
<td><?php echo $strTableMaintenance; ?> : </td>
|
||||||
<?php
|
<?php
|
||||||
|
Reference in New Issue
Block a user