do not truncate rowcount and next autoindex

This commit is contained in:
Sebastian Mendel
2005-11-18 12:26:59 +00:00
parent 18d703a208
commit 7a56c56c4b
2 changed files with 5 additions and 3 deletions

View File

@@ -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

View File

@@ -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; ?> &oslash;</th> <th class="name"><?php echo $strRowLength; ?> &oslash;</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
} }