aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_tag_helper.rb
diff options
context:
space:
mode:
authorSandeep <sandeep.ravichandran@sourcebits.com>2012-08-21 21:58:05 +0530
committerSandeep <sandeep.ravichandran@sourcebits.com>2012-08-21 21:59:05 +0530
commit99322266b8e80118a3912083c9c53ec03ff73eb6 (patch)
tree032c735b00ed1c2172cc7a1a97b7a5304fbfa9a1 /actionpack/lib/action_view/helpers/form_tag_helper.rb
parent8c600e45cd78883680986c18ad400f859f6978b2 (diff)
downloadrails-99322266b8e80118a3912083c9c53ec03ff73eb6.tar.gz
rails-99322266b8e80118a3912083c9c53ec03ff73eb6.tar.bz2
rails-99322266b8e80118a3912083c9c53ec03ff73eb6.zip
option_tags coerced to "" instead of nil
Diffstat (limited to 'actionpack/lib/action_view/helpers/form_tag_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/form_tag_helper.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb
index a9b91d1db3..ace457df2e 100644
--- a/actionpack/lib/action_view/helpers/form_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb
@@ -118,6 +118,7 @@ module ActionView
# # => <select disabled="disabled" id="destination" name="destination"><option>NYC</option>
# # <option>Paris</option><option>Rome</option></select>
def select_tag(name, option_tags = nil, options = {})
+ option_tags ||= ""
html_name = (options[:multiple] == true && !name.to_s.ends_with?("[]")) ? "#{name}[]" : name
if options.delete(:include_blank)