From: eldy <> Date: Sat, 17 Nov 2001 00:39:59 +0000 (+0000) Subject: Cleaner keywords extraction X-Git-Tag: AWSTATS_1_0~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=647373c96fea526bb29de732128e68d68f120cbe;p=thirdparty%2FAWStats.git Cleaner keywords extraction --- diff --git a/wwwroot/cgi-bin/awstats.pl b/wwwroot/cgi-bin/awstats.pl index 9d265d8c..aabbd4b6 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 56)"; +$VERSION="3.2 (build 58)"; $Lang="en"; # Default value @@ -1371,7 +1371,8 @@ sub Init_HashArray { sub ChangeWordSeparatorsIntoSpace { $_[0] =~ s/%1[03]/ /g; $_[0] =~ s/%2[02789abc]/ /g; - $_[0] =~ tr/\+\'\(\)\"\*,/ /s; # "&" and "=" must not be in this list + $_[0] =~ s/%3a/ /g; + $_[0] =~ tr/\+\'\(\)\"\*,:/ /s; # "&" and "=" must not be in this list }