]> git.ipfire.org Git - thirdparty/AWStats.git/commitdiff
Fixed: The space was replaced by + when decodeutfkeys plugin was used.
authoreldy <>
Wed, 7 Jan 2004 05:28:41 +0000 (05:28 +0000)
committereldy <>
Wed, 7 Jan 2004 05:28:41 +0000 (05:28 +0000)
wwwroot/cgi-bin/plugins/decodeutfkeys.pm

index ec9d07b35ea590982516f378448ae0d8df554102..51f060cbd9e295d24cfac9766364031016640194 100644 (file)
@@ -68,7 +68,7 @@ sub DecodeKey_decodeutfkeys {
                $string=Encode::encode($encoding, Encode::decode("utf-8", $string));
        }
        #$string=HTML::Entities::encode_entities($string);
-       $string =~ s/;+/ /g;
+       $string =~ s/[;+]/ /g;
        return $string;
 }