Deprecate expire_matched_fragments. Use expire_fragment instead. Closes #6535.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5412 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2006-11-02 19:29:40 +00:00
parent 99b607d717
commit a8bb66ace8
2 changed files with 3 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
*SVN*
* Deprecate expire_matched_fragments. Use expire_fragment instead. #6535 [Bob Silva]
* Update to latest Prototype, which doesn't serialize disabled form elements, adds clone() to arrays, empty/non-string Element.update() and adds a fixes excessive error reporting in WebKit beta versions [Thomas Fuchs]
* Deprecate start_form_tag and end_form_tag. Use form_tag / '</form>' from now on. [Rick]

View File

@@ -389,6 +389,7 @@ module ActionController #:nodoc:
def expire_matched_fragments(matcher = /.*/, options = nil) #:nodoc:
expire_fragment(matcher, options)
end
deprecate :expire_matched_fragments => :expire_fragment
class UnthreadedMemoryStore #:nodoc: