diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-05-13 17:00:27 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-05-13 17:00:27 +0100 |
commit | a885794fccabfc6dc8cc8e52f83c8ac865ddd8c8 (patch) | |
tree | 65bc2e4d57655c0f62aec527649de4e5f46296d4 /util/dataforms.lua | |
parent | daec51c435ca77914271200607841d55ff7408d7 (diff) | |
parent | 2f7ac943416fa13023e9d061ffc8020811a4ebf0 (diff) | |
download | prosody-a885794fccabfc6dc8cc8e52f83c8ac865ddd8c8.tar.gz prosody-a885794fccabfc6dc8cc8e52f83c8ac865ddd8c8.zip |
Merge 0.10->trunk
Diffstat (limited to 'util/dataforms.lua')
-rw-r--r-- | util/dataforms.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/dataforms.lua b/util/dataforms.lua index b2988ae7..9f2693b1 100644 --- a/util/dataforms.lua +++ b/util/dataforms.lua @@ -7,7 +7,7 @@ -- local setmetatable = setmetatable; -local pairs, ipairs = pairs, ipairs; +local ipairs = ipairs; local tostring, type, next = tostring, type, next; local t_concat = table.concat; local st = require "util.stanza"; @@ -32,7 +32,7 @@ function form_t.form(layout, data, formtype) if layout.instructions then form:tag("instructions"):text(layout.instructions):up(); end - for n, field in ipairs(layout) do + for _, field in ipairs(layout) do local field_type = field.type or "text-single"; -- Add field tag form:tag("field", { type = field_type, var = field.name, label = field.label }); |