From b45b1eb63f4cb6f44b83360ea352af4e22cb100e Mon Sep 17 00:00:00 2001 From: dakkar Date: Sun, 11 Jan 2015 12:39:25 +0000 Subject: fix estr uri escaping unsafe set --- lib/XML/LibXSLT/EXSLT.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/XML/LibXSLT/EXSLT.pm b/lib/XML/LibXSLT/EXSLT.pm index 9bf375f..1ed1db1 100644 --- a/lib/XML/LibXSLT/EXSLT.pm +++ b/lib/XML/LibXSLT/EXSLT.pm @@ -51,7 +51,7 @@ sub estr_uri_escape { my $unsafe=q{^a-zA-Z0-9\-_.!~*'()}; #'; if (!$unsafe_mode) { - $unsafe.=q{;/?:@&=+$,\[\]}; + $unsafe.=q{;/?:@&=+\$,\[\]}; } return uri_escape(encode($encoding,$string),$unsafe); -- cgit v1.2.3