diff options
| -rw-r--r-- | app/controllers/help_controller.rb | 9 | 
1 files changed, 8 insertions, 1 deletions
diff --git a/app/controllers/help_controller.rb b/app/controllers/help_controller.rb index 91e8088de..7d4c3409d 100644 --- a/app/controllers/help_controller.rb +++ b/app/controllers/help_controller.rb @@ -1,4 +1,11 @@ -class HelpController < ApplicationController +class HelpController < ActionController::Base +  layout "application" +  protect_from_forgery +  before_filter :set_locale + +  def set_locale +    I18n.locale = session[:language] || I18n.default_locale +  end    def show      @page = HelpPage.find(slug)  | 
