Skip to content

Commit

Permalink
don't set the hidden checkbox value if it's nil
Browse files Browse the repository at this point in the history
  • Loading branch information
dmathieu committed Jan 6, 2012
1 parent aec8172 commit 69a6381
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion actionpack/lib/action_view/helpers/form_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,7 @@ def to_check_box_tag(options = {}, checked_value = "1", unchecked_value = "0")
else
add_default_name_and_id(options)
end
hidden = tag("input", "name" => options["name"], "type" => "hidden", "value" => unchecked_value, "disabled" => options["disabled"])
hidden = unchecked_value ? tag("input", "name" => options["name"], "type" => "hidden", "value" => unchecked_value, "disabled" => options["disabled"]) : ""
checkbox = tag("input", options)
hidden + checkbox
end
Expand Down
8 changes: 8 additions & 0 deletions actionpack/test/template/form_helper_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,14 @@ def test_check_box_with_explicit_checked_and_unchecked_values
)
end

def test_check_box_with_nil_unchecked_value
@post.secret = "on"
assert_dom_equal(
'<input checked="checked" id="post_secret" name="post[secret]" type="checkbox" value="on" />',
check_box("post", "secret", {}, "on", nil)
)
end

def test_check_box_with_multiple_behavior
@post.comment_ids = [2,3]
assert_dom_equal(
Expand Down

0 comments on commit 69a6381

Please sign in to comment.