diff options
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index 5cf3d2f3e9..4411625e51 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -1569,10 +1569,10 @@ to this: path_without_format = path.sub(/\(\.:format\)$/, '') if using_match_shorthand?(path_without_format) - to ||= path_without_format.gsub(%r{^/}, "").sub(%r{/([^/]*)$}, '#\1') - to.tr!("-", "_") + path_without_format.gsub(%r{^/}, "").sub(%r{/([^/]*)$}, '#\1').tr("-", "_") + else + nil end - to end def process_path(options, controller, path, option_path, to, via, formatted, ancho, options_constraintsr) |