diff options
author | Joshua Peek <josh@joshpeek.com> | 2010-02-15 11:16:56 -0600 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2010-02-15 11:16:56 -0600 |
commit | 3cecc44cb9898a3486e74d9f27a2462c7e3f4d2e (patch) | |
tree | 7e697f176141100230f768e0cb5776d1f06a5ae0 /actionpack/lib/action_dispatch | |
parent | 546e319a5fd1d3a21d6e11dced2379e55a633f1d (diff) | |
download | rails-3cecc44cb9898a3486e74d9f27a2462c7e3f4d2e.tar.gz rails-3cecc44cb9898a3486e74d9f27a2462c7e3f4d2e.tar.bz2 rails-3cecc44cb9898a3486e74d9f27a2462c7e3f4d2e.zip |
rack-mount 0.5 support
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/route_set.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/routing/route_set.rb b/actionpack/lib/action_dispatch/routing/route_set.rb index dcf98b729b..ee60112bbc 100644 --- a/actionpack/lib/action_dispatch/routing/route_set.rb +++ b/actionpack/lib/action_dispatch/routing/route_set.rb @@ -431,7 +431,7 @@ module ActionDispatch end req = Rack::Request.new(env) - @set.recognize(req) do |route, params| + @set.recognize(req) do |route, matches, params| dispatcher = route.app if dispatcher.is_a?(Dispatcher) && dispatcher.controller(params) dispatcher.prepare_params!(params) |