Skip to content

Commit

Permalink
Avoid double spaces.
Browse files Browse the repository at this point in the history
They come from PMA_formatNumber without unit.
  • Loading branch information
nijel committed Apr 13, 2010
1 parent f73b0e0 commit a879b64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/common.lib.php
Expand Up @@ -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

/**
Expand Down

0 comments on commit a879b64

Please sign in to comment.