]> git.ipfire.org Git - thirdparty/AWStats.git/commitdiff
tb switched from 179 to 180 and added default in message array 188/head 190/head
authorDarioSindicic <dario.sindicic@gmail.com>
Wed, 12 Aug 2020 18:15:39 +0000 (20:15 +0200)
committerDarioSindicic <dario.sindicic@gmail.com>
Wed, 12 Aug 2020 18:15:39 +0000 (20:15 +0200)
wwwroot/cgi-bin/awstats.pl

index 01bccb52a2eb19f12f570b6a4c0052327e48216e..4de8ff623106c9eaf88f6d013007a56f173d8ac9 100755 (executable)
@@ -739,7 +739,8 @@ use vars qw/ @Message /;
        'Konqueror versions',
        ',',
        'Downloads',
-       'Export CSV'
+       'Export CSV',
+    'TB'
 );
 
 #------------------------------------------------------------------------------
@@ -8093,7 +8094,7 @@ sub Format_Bytes {
 
 # Do not use exp/log function to calculate 1024power, function make segfault on some unix/perl versions
        if ( $bytes >= ( $fudge << 40 ) ) {
-               return sprintf( "%.2f", $bytes / 1099511627776 ) . " $Message[179]";
+               return sprintf( "%.2f", $bytes / 1099511627776 ) . " $Message[180]";
        }
        if ( $bytes >= ( $fudge << 30 ) ) {
                return sprintf( "%.2f", $bytes / 1073741824 ) . " $Message[110]";