mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Using public send instead of send for the PerThreadRegistry module.
Prevents you from accidentally calling a protected method.
This commit is contained in:
parent
bb61d2defa
commit
60a5ac78b0
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ module ActiveSupport
|
|||
protected
|
||||
|
||||
def method_missing(*args, &block)
|
||||
instance.send(*args, &block)
|
||||
instance.public_send(*args, &block)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue