mirror of
https://github.com/github/rails.git
synced 2026-01-28 07:48:00 -05:00
The session should be saved even if the filter chain is stopped
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3584 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -420,7 +420,11 @@ module ActionController #:nodoc:
|
||||
end
|
||||
|
||||
def process_cleanup_with_filters
|
||||
process_cleanup_without_filters unless @before_filter_chain_aborted
|
||||
if @before_filter_chain_aborted
|
||||
close_session
|
||||
else
|
||||
process_cleanup_without_filters
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user