aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers
diff options
context:
space:
mode:
authorErkki Eilonen <erkki@itech.ee>2008-05-14 17:07:21 +0300
committerPratik Naik <pratiknaik@gmail.com>2008-05-21 20:23:58 +0100
commit6e3521e6134e7f0d0b27834266e41354290c4e7e (patch)
treeaf9a2ba2d0a388e9e4ba348cc0adb4305e7d6355 /actionpack/lib/action_view/helpers
parent19d7b1d22bd68af00244ddc3e1f35cec187e9120 (diff)
downloadrails-6e3521e6134e7f0d0b27834266e41354290c4e7e.tar.gz
rails-6e3521e6134e7f0d0b27834266e41354290c4e7e.tar.bz2
rails-6e3521e6134e7f0d0b27834266e41354290c4e7e.zip
Improve check_box_checked? to use include? for Array values. [#193 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-rw-r--r--actionpack/lib/action_view/helpers/form_helper.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb
index 6d97038da9..0962be2c79 100644
--- a/actionpack/lib/action_view/helpers/form_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_helper.rb
@@ -616,6 +616,8 @@ module ActionView
value != 0
when String
value == checked_value
+ when Array
+ value.include?(checked_value)
else
value.to_i != 0
end