[Rails-core] Re: Exception Notification plugin not working with Rails 2.1?

2008-07-02 Thread Yong Bakos
After the above mentioned fix you may find another error. Also fixed similarly as above, this time on exception_notifier_helper line 76: From: return @controller.filter_parameters({env_key => env_value}).values[0] To: return @controller.send(:filter_parameters, {env_key => env_value}).values

[Rails-core] Re: Exception Notification plugin not working with Rails 2.1?

2008-07-02 Thread tshim
I'm just chiming in to confirm this bug and the suggested fix -- but shouldn't this be tracked as an exception_notifier bug, not a rails bug? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" gr

[Rails-core] Re: Exception Notification plugin not working with Rails 2.1?

2008-06-05 Thread Trevor Turk
On Jun 4, 6:32 pm, "Michael Koziarski" <[EMAIL PROTECTED]> wrote: > If it's just about making the method protected you should be able to change: > @controller.filter_parameters(parameters) > to > @controller.send(:filter_parameters, parameters) Thanks for your reply, Koz. This strategy you sugges

[Rails-core] Re: Exception Notification plugin not working with Rails 2.1?

2008-06-04 Thread Michael Koziarski
> Any help would be appreciated! If it's just about making the method protected you should be able to change: @controller.filter_parameters(parameters) to @controller.send(:filter_parameters, parameters) -- Cheers Koz --~--~-~--~~~---~--~~ You received th