From 73f3e05059ee752dd658377cda51391e97be41cc Mon Sep 17 00:00:00 2001 From: eldy <> Date: Sat, 5 Jul 2003 12:19:01 +0000 Subject: [PATCH] Fixed not shown audio Windows Media Support in Miscelanous chart. --- docs/awstats_changelog.txt | 6 ++++++ wwwroot/cgi-bin/awstats.pl | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/awstats_changelog.txt b/docs/awstats_changelog.txt index dc8fb6c0..3df65091 100644 --- a/docs/awstats_changelog.txt +++ b/docs/awstats_changelog.txt @@ -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. +- " " changed to " " in miscellanous chart. New features/improvments: - None diff --git a/wwwroot/cgi-bin/awstats.pl b/wwwroot/cgi-bin/awstats.pl index 2464eb41..710f8182 100644 --- a/wwwroot/cgi-bin/awstats.pl +++ b/wwwroot/cgi-bin/awstats.pl @@ -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"}++; } -- 2.47.3