lib/active_support/callbacks.rb in activesupport-3.2.0 vs lib/active_support/callbacks.rb in activesupport-3.2.1

- old
+ new

@@ -394,10 +394,10 @@ # calculating which callbacks can be omitted because of per_key conditions. # def __run_callback(key, kind, object, &blk) #:nodoc: name = __callback_runner_name(key, kind) unless object.respond_to?(name) - str = send("_#{kind}_callbacks").compile(key, object) + str = object.send("_#{kind}_callbacks").compile(key, object) class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1 def #{name}() #{str} end protected :#{name} RUBY_EVAL end