]> git.ipfire.org Git - thirdparty/AWStats.git/commitdiff
Fixed not shown audio Windows Media Support in Miscelanous chart.
authoreldy <>
Sat, 5 Jul 2003 12:19:01 +0000 (12:19 +0000)
committereldy <>
Sat, 5 Jul 2003 12:19:01 +0000 (12:19 +0000)
docs/awstats_changelog.txt
wwwroot/cgi-bin/awstats.pl

index dc8fb6c0ec33afa26297a0a27474698cb56cd24b..3df65091a1fcef6d3e674566b66c118f9d5b854d 100644 (file)
@@ -10,6 +10,12 @@ Fixes:
   to count wrong "Add" done by browsers that hit the file even when no add is
   done. Value reported is the count for IE / ratio of IE among all other
   browsers.
+- Count for Browsers with WMA audio playing support now works.
+- Fix problem with default ShowFlagLinks defined to 1 instead of '' when not
+  included in config file.
+- Road runner browsers detection problems.
+- syslog tag can accept hostname with not only a-z chars.
+- "&nbsp" changed to "&nbsp;" in miscellanous chart.
 
 New features/improvments:
 - None
index 2464eb41e71c66c1d7b637079a6b28cf87f256d3..710f81828c0a1ba9c8172062ce6ad2353b32f874 100644 (file)
@@ -5310,7 +5310,7 @@ if ($UpdateStats && $FrameName ne 'index' && $FrameName ne 'mainleft') {  # Updat
                                if ($param =~ /FLA=(\w+)/)                      { $foundparam++; if ($1 eq "Y")    { $_misc_h{"FlashSupport"}++; } next; }
                                if ($param =~ /RP=(\w+)/)                       { $foundparam++; if ($1 eq "Y")    { $_misc_h{"RealPlayerSupport"}++; } next; }
                                if ($param =~ /MOV=(\w+)/)                      { $foundparam++; if ($1 eq "Y")    { $_misc_h{"QuickTimeSupport"}++; } next; }
-                               if ($param =~ /WMA=(\w+)/)                      { $foundparam++; if ($1 eq "Y")    { $_misc_h{"MediaPlayerSupport"}++; } next; }
+                               if ($param =~ /WMA=(\w+)/)                      { $foundparam++; if ($1 eq "Y")    { $_misc_h{"WindowsMediaPlayerSupport"}++; } next; }
                                if ($param =~ /PDF=(\w+)/)                      { $foundparam++; if ($1 eq "Y")    { $_misc_h{"PDFSupport"}++; } next; }
                        }
                        if ($foundparam) { $_misc_h{"TotalMisc"}++; }