aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags/select.rb
diff options
context:
space:
mode:
authorJeremy Walker <jez.walker@gmail.com>2012-01-21 16:13:47 +0000
committerJeremy Walker <jez.walker@gmail.com>2012-01-21 16:13:47 +0000
commit2ee8c6a73b932e97fc7abc453b50314aea76544d (patch)
tree65ff1305f9c5d01f4a5c9bc73db3d50a29301a9e /actionpack/lib/action_view/helpers/tags/select.rb
parenta50382cacdfa2e30c882f9f462e982d78e3e8ef5 (diff)
downloadrails-2ee8c6a73b932e97fc7abc453b50314aea76544d.tar.gz
rails-2ee8c6a73b932e97fc7abc453b50314aea76544d.tar.bz2
rails-2ee8c6a73b932e97fc7abc453b50314aea76544d.zip
Fix inconsistent ability to use a range as choices for select_tag.
Diffstat (limited to 'actionpack/lib/action_view/helpers/tags/select.rb')
-rw-r--r--actionpack/lib/action_view/helpers/tags/select.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/tags/select.rb b/actionpack/lib/action_view/helpers/tags/select.rb
index 71fd4d04b7..02b790db4e 100644
--- a/actionpack/lib/action_view/helpers/tags/select.rb
+++ b/actionpack/lib/action_view/helpers/tags/select.rb
@@ -4,6 +4,7 @@ module ActionView
class Select < Base #:nodoc:
def initialize(object_name, method_name, template_object, choices, options, html_options)
@choices = choices
+ @choices = @choices.to_a if @choices.is_a?(Range)
@html_options = html_options
super(object_name, method_name, template_object, options)