Software /
code /
prosody-modules
Diff
mod_register_web/mod_register_web.lua @ 1247:34fbe58d19da
mod_register_web: Use net.http instead of util.http, as we need to make requests (thanks dustin)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 06 Dec 2013 02:31:47 +0000 |
parent | 1239:cc5cbeeb9fc7 |
child | 1320:e670d4cc5027 |
line wrap: on
line diff
--- a/mod_register_web/mod_register_web.lua Tue Dec 03 00:08:11 2013 +0000 +++ b/mod_register_web/mod_register_web.lua Fri Dec 06 02:31:47 2013 +0000 @@ -1,7 +1,7 @@ local captcha_options = module:get_option("captcha_options", {}); local nodeprep = require "util.encodings".stringprep.nodeprep; local usermanager = require "core.usermanager"; -local http = require "util.http"; +local http = require "net.http"; local extra_fields = { nick = true; name = true; first = true; last = true; email = true;