1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-16 20:59:02 +00:00

Textarea's name should not be lowercased.

This commit is contained in:
perdo
2012-08-05 22:39:05 +00:00
parent ba049718b0
commit 7781d39cdf

View File

@@ -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