public
Rubygem
Description: Merb Core: All you need. None you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/wycats/merb-core.git
Search Repo:
use __send__ rather than send
ezmobius (author)
Mon Mar 24 16:10:56 -0700 2008
commit  d7a5f0985eeac9f439324ecd9990d651b336e292
tree    b309acf7c6f7ccf364e5011577959e1618c33283
parent  0f3cc717b6158809625b3b8c6c1597714d9f5f4f
...
209
210
211
212
 
213
214
215
...
209
210
211
 
212
213
214
215
0
@@ -209,7 +209,7 @@
0
     when :filter_chain_completed then _call_action(action_name)
0
     when String then caught
0
     when nil then _filters_halted
0
- when Symbol then send(caught)
0
+ when Symbol then __send__(caught)
0
     when Proc then caught.call(self)
0
     else
0
       raise MerbControllerError, "The before filter chain is broken dude. wtf?"

Comments

    No one has commented yet.