mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 14:49:29 +00:00
Textarea's name should not be lowercased.
This commit is contained in:
parent
ba049718b0
commit
7781d39cdf
1 changed files with 1 additions and 1 deletions
|
|
@ -1925,7 +1925,7 @@ function parse_form(form)
|
|||
local next_field_index = #fields+1
|
||||
if input_name then
|
||||
fields[next_field_index] = {}
|
||||
fields[next_field_index]["name"] = string.lower(input_name)
|
||||
fields[next_field_index]["name"] = input_name
|
||||
fields[next_field_index]["type"] = "textarea"
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue