Project

General

Profile

Actions

Bug #14793

closed

Hash returned from CGI.parse has [] as default value

Added by avit (Andrew Vit) almost 6 years ago. Updated almost 6 years ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:87290]

Description

Is there a valid reason for this behaviour? It looks like a bug to me:

require 'cgi'

params = CGI.parse("")
params["x"]
#=> []

(Expected nil)

I looked at history and it looks like it has been there from the very beginning of cgi.rb.

Updated by avit (Andrew Vit) almost 6 years ago

My mistake, it looks like all CGI values are always returned as arrays:

CGI.parse("x=y")
#=> {"x"=>["y"]}

Please close.

Actions #3

Updated by naruse (Yui NARUSE) almost 6 years ago

  • Status changed from Open to Closed
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0