diff options
author | Kim Alvefur <zash@zash.se> | 2017-03-01 02:38:05 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-03-01 02:38:05 +0100 |
commit | 55ba289bedc1580f49af034b8a849958b698de77 (patch) | |
tree | 9e8179e3cdc021aa83812cf4bbdb4fd0d9cbc814 /util/adhoc.lua | |
parent | da6eaea135e293573a6aeaf651ac49288e47e47f (diff) | |
parent | 9e586ac1dfdf187a7a5d5f80a818c92b13b16f0c (diff) | |
download | prosody-55ba289bedc1580f49af034b8a849958b698de77.tar.gz prosody-55ba289bedc1580f49af034b8a849958b698de77.zip |
Merge 0.10->trunk
Diffstat (limited to 'util/adhoc.lua')
-rw-r--r-- | util/adhoc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/adhoc.lua b/util/adhoc.lua index 671e85cf..17c9eee5 100644 --- a/util/adhoc.lua +++ b/util/adhoc.lua @@ -22,7 +22,7 @@ local function new_initial_data_form(form, initial_data, result_handler) return result_handler(fields, err, data); else return { status = "executing", actions = {"next", "complete", default = "complete"}, - form = { layout = form, values = initial_data() } }, "executing"; + form = { layout = form, values = initial_data(data) } }, "executing"; end end end |