mirror of
https://github.com/nmap/nmap.git
synced 2025-12-17 05:09:00 +00:00
Textarea's name should not be lowercased.
This commit is contained in:
@@ -1925,7 +1925,7 @@ function parse_form(form)
|
|||||||
local next_field_index = #fields+1
|
local next_field_index = #fields+1
|
||||||
if input_name then
|
if input_name then
|
||||||
fields[next_field_index] = {}
|
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"
|
fields[next_field_index]["type"] = "textarea"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user