Avoid double spaces.

They come from PMA_formatNumber without unit.
This commit is contained in:
Michal Čihař
2010-04-13 14:14:04 +02:00
parent f73b0e0195
commit a879b64620

View File

@@ -1397,7 +1397,7 @@ function PMA_formatByteDown($value, $limes = 6, $comma = 0)
$return_value = PMA_formatNumber($value, 0);
}
return array($return_value, $unit);
return array(trim($return_value), $unit);
} // end of the 'PMA_formatByteDown' function
/**