diff options
author | Erkki Eilonen <erkki@itech.ee> | 2008-05-14 17:07:21 +0300 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2008-05-21 20:23:58 +0100 |
commit | 6e3521e6134e7f0d0b27834266e41354290c4e7e (patch) | |
tree | af9a2ba2d0a388e9e4ba348cc0adb4305e7d6355 /actionpack/lib | |
parent | 19d7b1d22bd68af00244ddc3e1f35cec187e9120 (diff) | |
download | rails-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')
-rw-r--r-- | actionpack/lib/action_view/helpers/form_helper.rb | 2 |
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 |