From d72045fe5d3f102860b588adf80c27135a18b679 Mon Sep 17 00:00:00 2001 From: wakou Date: Sun, 25 Aug 2002 20:15:54 +0000 Subject: * lib/cgi.rb (CGI#form): fix ruby-bugs-ja:PR#280, add default action. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2745 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/cgi.rb | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/cgi.rb b/lib/cgi.rb index 7870c8125..714a3a209 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| - "
" + "" }.to_s - body += hidden + if defined? fieldset + body += fieldset{ hidden } + else + body += hidden + end end super(attributes){body} end -- cgit