Skip to content
Snippets Groups Projects
Commit 940c2915 authored by echicken's avatar echicken
Browse files

Even better comparison of current username to guest username.

parent 1685ecde
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,7 @@ if(http_request.query.hasOwnProperty('action') && http_request.query.action == '
print("User account created.");
}
} else if(user.alias == webIni.guestUser) {
} else if(user.alias.toUpperCase() == webIni.guestUser.toUpperCase()) {
print("<form name=newUser id=newUser action=./newUser.ssjs method=post onsubmit='return validateNewUserForm()'>");
print("<input type=hidden name=action value=newUser />");
......
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