bug #2931939 Seeing "m" as unit is confusing

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

View File

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