From 4046a1cb92094d5227bc98e7e2eec14c08b65652 Mon Sep 17 00:00:00 2001 From: mame Date: Thu, 18 Sep 2008 11:05:09 +0000 Subject: * lib/uri/common.rb (unescape): skip '%' to make String#hex work correctly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19413 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/uri/common.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/uri/common.rb b/lib/uri/common.rb index 98dda2a350..9a6a06894a 100644 --- a/lib/uri/common.rb +++ b/lib/uri/common.rb @@ -227,7 +227,7 @@ module URI end def unescape(str, escaped = @regexp[:ESCAPED]) - str.gsub(escaped) { [$&.hex].pack('U') } + str.gsub(escaped) { [$&[1, 2].hex].pack('U') } end @@to_s = Kernel.instance_method(:to_s) -- cgit v1.2.3