mod_register_web: Use net.http instead of util.http, as we need to make requests (thanks dustin)
authorMatthew Wild <mwild1@gmail.com>
Fri, 06 Dec 2013 02:31:47 +0000
changeset 1247 34fbe58d19da
parent 1246 e76f7b6be20e
child 1248 69f7840923f5
mod_register_web: Use net.http instead of util.http, as we need to make requests (thanks dustin)
mod_register_web/mod_register_web.lua
--- 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;