On 3 Dec 2008, at 23:08, BarefootSanders wrote:
>
> I'm trying to add an application enabled/disabled flag in my
> application.. This is my code.
>
> [code=] # application.rb
> ...
> before_filter :check_enabled_flag
>
> private
>
> def check_enabled_flag
> application_flag = ApplicationFlag.find(:first)
>
> if application_flag.application_enabled
is this typo ? surely you only redirect when the application is not
enabled.
What version of rails is your app running ? For rails >= 2.0 then
redirecting from a filter halts execution, but in previous versions
you had to return false from the filter to achieve that.
Fred