diff options
author | Josh Symonds <veraticus@gmail.com> | 2013-10-23 16:44:23 -0500 |
---|---|---|
committer | Josh Symonds <veraticus@gmail.com> | 2013-10-23 16:44:23 -0500 |
commit | cb81a535e0ea7de890a7d65982364c4e7c6ba254 (patch) | |
tree | 5ee31d55284c2404ff05843661c59c6d9cb80ac9 /actionpack/lib | |
parent | ec3ad30606a9e46715c7bbbc98ce911d42dbb5ee (diff) | |
download | rails-cb81a535e0ea7de890a7d65982364c4e7c6ba254.tar.gz rails-cb81a535e0ea7de890a7d65982364c4e7c6ba254.tar.bz2 rails-cb81a535e0ea7de890a7d65982364c4e7c6ba254.zip |
Correct error in Utils.normalize_path that changed paths improperly
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_dispatch/journey/router/utils.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/journey/router/utils.rb b/actionpack/lib/action_dispatch/journey/router/utils.rb index 1edf86cd88..d1a004af50 100644 --- a/actionpack/lib/action_dispatch/journey/router/utils.rb +++ b/actionpack/lib/action_dispatch/journey/router/utils.rb @@ -18,7 +18,7 @@ module ActionDispatch path = "/#{path}" path.squeeze!('/') path.sub!(%r{/+\Z}, '') - path.gsub!(/(%[a-f0-9]{2}+)/) { $1.upcase } + path.gsub!(/(%[a-f0-9]{2})/) { $1.upcase } path = '/' if path == '' path end |