aboutsummaryrefslogtreecommitdiffstats
path: root/lib/cgi
diff options
context:
space:
mode:
authorxibbar <xibbar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-24 12:10:27 +0000
committerxibbar <xibbar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-24 12:10:27 +0000
commitb1c14f8fbb15ddb1c44d169dee67bb32f903bfa9 (patch)
tree2aab98dfee948dd3ef2b33560bd82beebcf20a36 /lib/cgi
parent1e2b744ed2f8146816fd5b83ba85497456907c18 (diff)
downloadruby-b1c14f8fbb15ddb1c44d169dee67bb32f903bfa9.tar.gz
* lib/cgi/html.rb: allow symbolized key.
* test/cgi/test_cgi_tag_helper.rb: add a test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19919 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/cgi')
-rw-r--r--lib/cgi/html.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cgi/html.rb b/lib/cgi/html.rb
index 74aa730be7..62f1fc1898 100644
--- a/lib/cgi/html.rb
+++ b/lib/cgi/html.rb
@@ -27,11 +27,11 @@ class CGI
attributes={attributes=>nil} if attributes.kind_of?(String)
"<#{element.upcase}" + attributes.collect{|name, value|
next unless value
- " " + CGI::escapeHTML(name) +
+ " " + CGI::escapeHTML(name.to_s) +
if true == value
""
else
- '="' + CGI::escapeHTML(value) + '"'
+ '="' + CGI::escapeHTML(value.to_s) + '"'
end
}.join + ">"
END