summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorwakou <wakou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-08-25 20:15:54 +0000
committerwakou <wakou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-08-25 20:15:54 +0000
commiteaf7368732330b4f3d42442e2b6730366ff4abdb (patch)
tree4c3b567d893b402f8b3073bc5a859ec52888a09d /lib
parent87c2982847b38d511c418eb79818cc8c3d2cbab2 (diff)
* lib/cgi.rb (CGI#form): fix ruby-bugs-ja:PR#280, add default action.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2745 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/cgi.rb10
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/cgi.rb b/lib/cgi.rb
index 7870c8125b..714a3a2099 100644
--- a/lib/cgi.rb
+++ b/lib/cgi.rb
@@ -1253,7 +1253,7 @@ convert string charset, and set language to "ja".
The hash keys are case sensitive. Ask the samples.
=end
- def form(method = "post", action = nil, enctype = "application/x-www-form-urlencoded")
+ def form(method = "post", action = script_name, enctype = "application/x-www-form-urlencoded")
attributes = if method.kind_of?(String)
{ "METHOD" => method, "ACTION" => action,
"ENCTYPE" => enctype }
@@ -1273,9 +1273,13 @@ The hash keys are case sensitive. Ask the samples.
end
if @output_hidden
hidden = @output_hidden.collect{|k,v|
- "<DIV><INPUT TYPE=HIDDEN NAME=\"#{k}\" VALUE=\"#{v}\"></DIV>"
+ "<INPUT TYPE=HIDDEN NAME=\"#{k}\" VALUE=\"#{v}\">"
}.to_s
- body += hidden
+ if defined? fieldset
+ body += fieldset{ hidden }
+ else
+ body += hidden
+ end
end
super(attributes){body}
end