diff options
-rw-r--r-- | Bugzilla/Util.pm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm index ced15491d..4afdef1b4 100644 --- a/Bugzilla/Util.pm +++ b/Bugzilla/Util.pm @@ -243,14 +243,11 @@ sub xml_quote { return $var; } -# This function must not be relied upon to return a valid string to pass to -# the DB or the user in UTF-8 situations. The only thing you can rely upon -# it for is that if you url_decode a string, it will url_encode back to the -# exact same thing. sub url_decode { my ($todecode) = (@_); $todecode =~ tr/+/ /; # pluses become spaces $todecode =~ s/%([0-9a-fA-F]{2})/pack("c",hex($1))/ge; + utf8::decode($todecode) if Bugzilla->params->{'utf8'}; return $todecode; } |