From: Eric Bollengier Date: Mon, 9 Jul 2007 15:19:10 +0000 (+0000) Subject: ebl fix Kb, Gb, Tb... X-Git-Tag: Release-2.2.0~186 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b63b9b2b05626ef4012e62fed181e511c9715739;p=bacula%2Fbacula ebl fix Kb, Gb, Tb... git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5132 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/gui/bweb/lib/Bweb.pm b/gui/bweb/lib/Bweb.pm index 1e75dd7171..77a013d48a 100644 --- a/gui/bweb/lib/Bweb.pm +++ b/gui/bweb/lib/Bweb.pm @@ -1137,7 +1137,7 @@ sub dbh_selectrow_hashref # display Mb/Gb/Kb sub human_size { - my @unit = qw(b Kb Mb Gb Tb); + my @unit = qw(B KB MB GB TB); my $val = shift || 0; my $i=0; my $format = '%i %s';