diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-10-09 00:53:59 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-10-09 00:53:59 +0000 |
commit | 211ffd3f792d2d0823365bdb49d29b9f7ed99ca0 (patch) | |
tree | 344300740d51e6f9a47513d06460a4606a0fc188 /actionpack/CHANGELOG | |
parent | 8ff92e243568a6ae72e88f48a7ae15dffaf81e57 (diff) | |
download | rails-211ffd3f792d2d0823365bdb49d29b9f7ed99ca0.tar.gz rails-211ffd3f792d2d0823365bdb49d29b9f7ed99ca0.tar.bz2 rails-211ffd3f792d2d0823365bdb49d29b9f7ed99ca0.zip |
Fixed that FormHelper#radio_button didn't respect an :id being passed in (closes #6266) [evansj]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5247 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 41f71cc68c..224874188d 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Fixed that FormHelper#radio_button didn't respect an :id being passed in #6266 [evansj] + * Added an html_options hash parameter to javascript_tag() and update_page_tag() helpers #6311 [tzaharia]. Example: update_page_tag :defer => 'true' { |page| ... } |