Subject: | doublequotes not escaping |
This is an issue in URI::Escape. uri_escape() used to escape the double
quote character " by default but no longer does so.
A perl one-liner to recreate the error:
perl -MURI -MURI::Escape -e 'print
"URI::VERSION=$URI::VERSION\nURI::Escape::VERSION=$URI::Escape::VERSION\n";
print "uri_escape(\")=",uri_escape("\""),"\n";'
I run it on my older machine:
URI::VERSION=1.37
URI::Escape::VERSION=3.29
uri_escape(")=%22
I run it on my newer machine:
URI::VERSION=1.54
URI::Escape::VERSION=3.30
uri_escape(")="