diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 0cb6aa78a..c54bb4421 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -34,17 +34,6 @@ class ApplicationController < ActionController::Base super cookies.delete(:autologin) end - # Remove broken cookie after upgrade from 0.8.x (#4292) - # See https://rails.lighthouseapp.com/projects/8994/tickets/3360 - # TODO: remove it when Rails is fixed - before_filter :delete_broken_cookies - def delete_broken_cookies - if cookies['_redmine_session'] && cookies['_redmine_session'] !~ /--/ - cookies.delete '_redmine_session' - redirect_to home_path - return false - end - end before_filter :user_setup, :check_if_login_required, :set_localization