do not truncate rowcount and next autoindex
This commit is contained in:
@@ -15,6 +15,8 @@ $Source$
|
|||||||
* themes/darkblue_orange/css/*
|
* themes/darkblue_orange/css/*
|
||||||
- fixed font sizes
|
- fixed font sizes
|
||||||
* lang/english-*: small improvements
|
* lang/english-*: small improvements
|
||||||
|
* tbl_properties_structure.php
|
||||||
|
- do not truncate rowcount and next autoindex
|
||||||
|
|
||||||
2005-11-17 Marc Delisle <lem9@users.sourceforge.net>
|
2005-11-17 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* Documentation.html: patch #1353283, thanks to Isaac Bennetch
|
* Documentation.html: patch #1353283, thanks to Isaac Bennetch
|
||||||
|
@@ -723,7 +723,7 @@ if ( $cfg['ShowStats'] ) {
|
|||||||
?>
|
?>
|
||||||
<tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
|
<tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
|
||||||
<th class="name"><?php echo $strRows; ?></th>
|
<th class="name"><?php echo $strRows; ?></th>
|
||||||
<td class="value"><?php echo PMA_formatNumber( $showtable['Rows'] ); ?></td>
|
<td class="value"><?php echo PMA_formatNumber( $showtable['Rows'], 0 ); ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
@@ -731,7 +731,7 @@ if ( $cfg['ShowStats'] ) {
|
|||||||
?>
|
?>
|
||||||
<tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
|
<tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
|
||||||
<th class="name"><?php echo $strRowLength; ?> ø</th>
|
<th class="name"><?php echo $strRowLength; ?> ø</th>
|
||||||
<td class="value"><?php echo PMA_formatNumber( $showtable['Avg_row_length'] ); ?></td>
|
<td class="value"><?php echo PMA_formatNumber( $showtable['Avg_row_length'], 0 ); ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
@@ -747,7 +747,7 @@ if ( $cfg['ShowStats'] ) {
|
|||||||
?>
|
?>
|
||||||
<tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
|
<tr class="<?php echo ($odd_row = !$odd_row) ? 'odd' : 'even'; ?>">
|
||||||
<th class="name"><?php echo $strNext; ?> Autoindex</th>
|
<th class="name"><?php echo $strNext; ?> Autoindex</th>
|
||||||
<td class="value"><?php echo PMA_formatNumber( $showtable['Auto_increment'] ); ?></td>
|
<td class="value"><?php echo PMA_formatNumber( $showtable['Auto_increment'], 0 ); ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user