state_select and Rails 2.0.2 1
Because of a change in the workings of Rails 2.0.2, the excellent state_select plugin doesn’t work properly. Fortunately, the fix is really easy. After line 35, enter the following code, value = value(object).
This should give you a new to_state_select_tag, like this:
def to_state_select_tag(country, options, html_options)
html_options = html_options.stringify_keys
add_default_name_and_id(html_options)
value = value(object)
selected_value = options.has_key?(:selected) ? options[:selected] : value
content_tag("select", add_options(state_options_for_select(selected_value, country), options, value), html_options)
end
That change got the state_select plugin to work for me under Rails 2.
Update: This has been fixed in the latest version. If you are experiencing this issue, update to the latest version.