]> git.ipfire.org Git - thirdparty/AWStats.git/commitdiff
Cleaner keywords extraction
authoreldy <>
Sat, 17 Nov 2001 00:39:59 +0000 (00:39 +0000)
committereldy <>
Sat, 17 Nov 2001 00:39:59 +0000 (00:39 +0000)
wwwroot/cgi-bin/awstats.pl

index 9d265d8c0e174d27d3400ed0327a124491ecae8c..aabbd4b6def3169abfffe6185c62af793294b314 100644 (file)
@@ -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
 }