Merge pull request #663 from wouterw/ww-fix-super-in-define-method

Fix use of `super` in `define_method`
This commit is contained in:
Steve Klabnik 2014-09-23 09:16:58 -04:00
commit b6b01d0b73

View File

@ -47,7 +47,7 @@ module ActionController
if json if json
super(json, options) super(json, options)
else else
super super(resource, options)
end end
end end
end end