search for: application_flag

Displaying 1 result from an estimated 1 matches for "application_flag".

2008 Dec 03
2
Render and/or redirect were called multiple times in this action
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 redirect_to application_disabled_path and return end end[/code] and for some reason i keep getting this error [code=]Render and/or redirect were called multiple times in this action. Please note that you may on...