]> git.ipfire.org Git - thirdparty/AWStats.git/commitdiff
no message
authoreldy <>
Thu, 10 Jan 2002 20:09:05 +0000 (20:09 +0000)
committereldy <>
Thu, 10 Jan 2002 20:09:05 +0000 (20:09 +0000)
wwwroot/cgi-bin/awstats.pl

index fe3a439ea3debfafcb85e1e93d8c261f6127f3c2..27f05187317e9550bb53bb1095d97d55f527a130 100644 (file)
@@ -1794,7 +1794,7 @@ sub Format_Bytes {
        if ($bytes >= $fudge * exp(2*log(1024))) { return sprintf("%.2f", $bytes/exp(2*log(1024)))." Mb"; }
        if ($bytes >= $fudge * exp(1*log(1024))) { return sprintf("%.2f", $bytes/exp(1*log(1024)))." $Message[44]"; }
        if ($bytes < 0) { $bytes="?"; }
-       return "$bytes $Message[75]";
+       return int($bytes)." $Message[75]";
 }
 
 #------------------------------------------------------------------------------