mirror of
https://github.com/github/rails.git
synced 2026-02-08 13:15:23 -05:00
Fixed FormOptionsHelper#select to respect :selected value (closes #5813)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4995 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
*SVN*
|
||||
|
||||
* Fixed FormOptionsHelper#select to respect :selected value #5813
|
||||
|
||||
* Fixed TextHelper#simple_format to deal with multiple single returns within a single paragraph #5835 [moriq@moriq.com]
|
||||
|
||||
* Fixed TextHelper#pluralize to handle 1 as a string #5905 [rails@bencurtis.com]
|
||||
* Fixed TextHelper#pluralize to handle 1 as a string #5909 [rails@bencurtis.com]
|
||||
|
||||
* Improved resolution of DateHelper#distance_of_time_in_words for better precision #5994 [Bob Silva]
|
||||
|
||||
|
||||
@@ -299,7 +299,7 @@ module ActionView
|
||||
add_default_name_and_id(html_options)
|
||||
value = value(object)
|
||||
selected_value = options.has_key?(:selected) ? options[:selected] : value
|
||||
content_tag("select", add_options(options_for_select(choices, selected_value), options, value), html_options)
|
||||
content_tag("select", add_options(options_for_select(choices, selected_value), options, selected_value), html_options)
|
||||
end
|
||||
|
||||
def to_collection_select_tag(collection, value_method, text_method, options, html_options)
|
||||
|
||||
Reference in New Issue
Block a user