aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-12-11 06:06:41 -0800
committerJosé Valim <jose.valim@gmail.com>2011-12-11 06:06:41 -0800
commit78de996562fc1802f820f65b1abed552cc92bfd9 (patch)
tree05fc3b124e1f4079652da723613b08f8fe8cee7a /actionpack/CHANGELOG.md
parent79835090e2ddd3f73101f52cfa74ad38ce130374 (diff)
parent3f65e7f7be92adfb2d89ec23ef28a96d2bfae294 (diff)
downloadrails-78de996562fc1802f820f65b1abed552cc92bfd9.tar.gz
rails-78de996562fc1802f820f65b1abed552cc92bfd9.tar.bz2
rails-78de996562fc1802f820f65b1abed552cc92bfd9.zip
Merge pull request #3933 from wfarr/master
Add button_tag support to ActionView::Helpers::FormBuilder
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 761da8cb87..29b93da50b 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,15 @@
## Rails 3.2.0 (unreleased) ##
+* Add `button_tag` support to ActionView::Helpers::FormBuilder.
+
+ This support mimics the default behavior of `submit_tag`.
+
+ Example:
+
+ <%= form_for @post do |f| %>
+ <%= f.button %>
+ <% end %>
+
* Make ActiveSupport::Benchmarkable a default module for ActionController::Base, so the #benchmark method is once again available in the controller context like it used to be *DHH*
* Deprecated implied layout lookup in controllers whose parent had a explicit layout set: