aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorjasl <jasl9187@hotmail.com>2013-01-02 16:48:09 +0800
committerjasl <jasl9187@hotmail.com>2013-01-02 16:48:09 +0800
commitea881ca85a1a9df3c25e2ee8668d98416a5c1acb (patch)
tree89cdf15778c579012e4453c4c6c9c358feee94f4 /actionpack/CHANGELOG.md
parentd38c8caa48a732d41c7402a5e71deece4e313559 (diff)
downloadrails-ea881ca85a1a9df3c25e2ee8668d98416a5c1acb.tar.gz
rails-ea881ca85a1a9df3c25e2ee8668d98416a5c1acb.tar.bz2
rails-ea881ca85a1a9df3c25e2ee8668d98416a5c1acb.zip
fix block.arity raise nil error when not given a block to "content_tag_for"
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index a681a2dc79..8a9be65d10 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 3.2.10 (unreleased) ##
+* Fix a bug in `ActionView::Helpers::RecordTagHelper::content_tag_for`
+ raise `nil:NilClass` without given a block.
+
+ *Jasl*
+
* Clear url helper methods when routes are reloaded by removing the methods
explicitly rather than just clearing the module because it didn't work
properly and could be the source of a memory leak.