# HG changeset patch # User Marco Cirillo # Date 1316704375 0 # Node ID bfc8bc7d77f34ebec71e41c7c81037a99ea913cd # Parent 9a71493368de21c45475e006343ac24d74d7b07b mod_register_redirect: removed invalid character from code (why you do these things dear term...?) diff -r 9a71493368de -r bfc8bc7d77f3 mod_register_redirect/mod_register_redirect.lua --- a/mod_register_redirect/mod_register_redirect.lua Thu Sep 22 15:03:51 2011 +0000 +++ b/mod_register_redirect/mod_register_redirect.lua Thu Sep 22 15:12:55 2011 +0000 @@ -28,7 +28,7 @@ elseif url:match("^(%w+)[:].*$") == "mailto" then inst_text = "Please send an e-mail at "..url:match("^%w+[:](.*)$").." to register an account on this server." elseif url:match("^(%w+)[:].*$") == "xmpp" then - inst_text = "Please contact "..module:get_host().." server administrator via xmpp to register an account on this server at: "..url:match("^%wÃ+[:](.*)$") + inst_text = "Please contact "..module:get_host().." server administrator via xmpp to register an account on this server at: "..url:match("^%w+[:](.*)$") else module:log("error", "This module supports only http/https, mailto or xmpp as URL formats.") module:log("error", "If you want to use personalized instructions without an Out-Of-Band method,")