[Rt-commit] rt branch, 3.8-trunk, updated. rt-3.8.8-170-g94e96b4
? sunnavy
sunnavy at bestpractical.com
Wed Oct 13 08:13:16 EDT 2010
The branch, 3.8-trunk has been updated
via 94e96b44439dfdea1e98e514f5835eed1be5a3d0 (commit)
from 13b6c93483d67f09c7c8990afeaa30d87f0baaf9 (commit)
Summary of changes:
.../Ticket/Elements/ShowTransactionAttachments | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
- Log -----------------------------------------------------------------
commit 94e96b44439dfdea1e98e514f5835eed1be5a3d0
Author: sunnavy <sunnavy at bestpractical.com>
Date: Wed Oct 13 20:12:44 2010 +0800
case fix: the other 2 use lower cases
diff --git a/share/html/Ticket/Elements/ShowTransactionAttachments b/share/html/Ticket/Elements/ShowTransactionAttachments
index 9903ca4..aa74094 100644
--- a/share/html/Ticket/Elements/ShowTransactionAttachments
+++ b/share/html/Ticket/Elements/ShowTransactionAttachments
@@ -129,7 +129,7 @@ my $size_to_str = sub {
my $size = shift;
# show a download link
if ( $size > 1024*1024 ) {
- $size = loc( "[_1]M", int( $size / 1024 / 102.4 ) / 10 );
+ $size = loc( "[_1]m", int( $size / 1024 / 102.4 ) / 10 );
}
elsif ( $size > 1024 ) {
$size = loc( "[_1]k", int( $size / 102.4 ) / 10 );
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list