Actions
Bug #443
closed[PATCH] CGI#checkbox_group raises a TypeError when passing false as checked value
Description
=begin
c = CGI.new("html4")
c.checkbox_group("test", ["bar", "label for bar", false])
=> TypeError: can't convert false into String
After applying the patch:
c.checkbox_group("test", ["bar", "label for bar", false])
=> "<INPUT NAME="test" TYPE="checkbox" VALUE="bar">label for bar"
=end
Files
Updated by naruse (Yui NARUSE) about 16 years ago
- Assignee set to xibbar (Takeyuki FUJIOKA)
=begin
=end
Updated by xibbar (Takeyuki FUJIOKA) about 16 years ago
- Status changed from Open to Rejected
=begin
In 1.8, this behavior is right.
But in 1.9, I think this suggestion is better.
I will commit this improvement to trunk repository.
=end
Actions
Like0
Like0Like0