changeset 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
parents e76f7b6be20e
children 69f7840923f5
files mod_register_web/mod_register_web.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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;