Skip to content

Commit

Permalink
Remove send! usage, relic of reverted 1.9 behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy committed Jul 28, 2008
1 parent 50bbc87 commit eb25671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actionpack/lib/action_controller/integration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ def copy_session_variables! #:nodoc:
# Delegate unhandled messages to the current session instance.
def method_missing(sym, *args, &block)
reset! unless @integration_session
returning @integration_session.send!(sym, *args, &block) do
returning @integration_session.__send__(sym, *args, &block) do
copy_session_variables!
end
end
Expand Down

0 comments on commit eb25671

Please sign in to comment.