bug #2931939 Seeing "m" as unit is confusing

This commit is contained in:
Marc Delisle
2010-01-19 19:40:20 +00:00
parent 3c449953a2
commit a4aea21d00
2 changed files with 2 additions and 1 deletions

View File

@@ -61,6 +61,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- [security] Use X-Frame-Options header to protect against ClickJacking. - [security] Use X-Frame-Options header to protect against ClickJacking.
+ [lang] Finnish update, thanks to Jouni Kahkonen + [lang] Finnish update, thanks to Jouni Kahkonen
+ [lang] Lithuanian update, thanks to Rytis Slatkevicius - rytis_s + [lang] Lithuanian update, thanks to Rytis Slatkevicius - rytis_s
- bug #2931939 [status] Seeing "m" as unit is confusing
3.2.6.0 (not yet released) 3.2.6.0 (not yet released)

View File

@@ -570,7 +570,7 @@ foreach ($used_queries as $name => $value) {
<th class="name"><?php echo htmlspecialchars($name); ?></th> <th class="name"><?php echo htmlspecialchars($name); ?></th>
<td class="value"><?php echo PMA_formatNumber($value, 4, 0); ?></td> <td class="value"><?php echo PMA_formatNumber($value, 4, 0); ?></td>
<td class="value"><?php echo <td class="value"><?php echo
PMA_formatNumber($value * $hour_factor, 4, 2); ?></td> PMA_formatNumber($value * $hour_factor, 3, 3); ?></td>
<td class="value"><?php echo <td class="value"><?php echo
PMA_formatNumber($value * $perc_factor, 0, 2); ?>%</td> PMA_formatNumber($value * $perc_factor, 0, 2); ?>%</td>
</tr> </tr>