From: eldy <> Date: Fri, 9 Nov 2001 15:35:04 +0000 (+0000) Subject: Cleaner keywords extraction X-Git-Tag: AWSTATS_1_0~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11704fc0877646dfd2e90358817af6f7c5b567fc;p=thirdparty%2FAWStats.git Cleaner keywords extraction --- diff --git a/wwwroot/cgi-bin/awstats.pl b/wwwroot/cgi-bin/awstats.pl index f75e3634..571e2c39 100644 --- a/wwwroot/cgi-bin/awstats.pl +++ b/wwwroot/cgi-bin/awstats.pl @@ -82,7 +82,7 @@ $WarningMessages= 1; %MonthBytes = %MonthHits = %MonthHostsKnown = %MonthHostsUnknown = %MonthPages = %MonthUnique = %MonthVisits = %monthlib = %monthnum = (); -$VERSION="3.2 (build 51)"; +$VERSION="3.2 (build 52)"; $Lang="en"; # Default value @@ -1370,7 +1370,11 @@ sub Init_HashArray { #-------------------------------------------------------------------- sub ChangeWordSeparatorsIntoSpace { $_[0] =~ s/%20/ /g; + $_[0] =~ s/%22/ /g; $_[0] =~ s/%27/ /g; + $_[0] =~ s/%28/ /g; + $_[0] =~ s/%29/ /g; + $_[0] =~ s/%2c/ /g; $_[0] =~ tr/\+\'\(\)\",/ /s; # "&" and "=" must not be in this list }