aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-02-12 16:18:06 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-02-12 16:18:06 +0000
commit431edf7793c487dabdcbc7df443bff3bf30cf043 (patch)
tree14f7e2be659104d8f0f06e153b83108deb65b17e
parentff986f19af30efd05d413b37b22c295616804219 (diff)
downloadrails-431edf7793c487dabdcbc7df443bff3bf30cf043.tar.gz
rails-431edf7793c487dabdcbc7df443bff3bf30cf043.tar.bz2
rails-431edf7793c487dabdcbc7df443bff3bf30cf043.zip
Fixed that flash wasnt being cleared after components refactoring yesterday
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3582 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--actionpack/lib/action_controller/flash.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/flash.rb b/actionpack/lib/action_controller/flash.rb
index 29a8962910..446bab5dc9 100644
--- a/actionpack/lib/action_controller/flash.rb
+++ b/actionpack/lib/action_controller/flash.rb
@@ -143,8 +143,8 @@ module ActionController #:nodoc:
end
def process_cleanup_with_flash
- process_cleanup_without_flash
flash.sweep
+ process_cleanup_without_flash
end
protected