Skip to content
Snippets Groups Projects
Commit 197d2f4f authored by rswindell's avatar rswindell
Browse files

Make "send user info to sysop" (enabling Tracker1's mod) a variable

defaults to false.
parent dcfbb9d8
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,8 @@
/* ToDo: Deal with UQ_NODEF */
var send_user_info_to_sysop=false;
/* These two strings *must* be different! */
var required_str="*";
var optional_str="";
......@@ -348,11 +350,12 @@ else {
nuser.shell=http_request.query.shell;
nuser.editor=http_request.query.editor;
sendUserInfoToSysop(
nuser,
system.name + " New User Information (web)",
"" /* TODO: Create a comment textarea field, and put the result here */
);
if(send_user_info_to_sysop)
sendUserInfoToSysop(
nuser,
system.name + " New User Information (web)",
"" /* TODO: Create a comment textarea field, and put the result here */
);
template.title="New user created";
if(do_header)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment