Skip to content
Snippets Groups Projects
Commit 6d309f36 authored by rswindell's avatar rswindell
Browse files

Updated comments and successful account creation message.

parent a19129a1
Branches
Tags
No related merge requests found
// makeguest.js
// Don't create guest account if sysop account hasn't been created yet
// Script to create the Guest/Anonymous user account
// This is normally executed from logon.js (rev 1.7+)
// $Id$
// Don't create guest account if sysop account hasn't been created yet
if(!system.stats.total_users) {
printf("No users in database.\r\n");
exit();
......@@ -33,4 +35,4 @@ user.security.exemptions|=UFLAG_L; // unlimited logons per day
user.security.exemptions|=UFLAG_T; // unlimited time online
user.security.exemptions|=UFLAG_P; // permanent (never expires)
printf("Guest account (#%d) created successfully\r\n",user.number);
printf("Guest account (user #%d) created successfully.\r\n",user.number);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment