Skip to content
Snippets Groups Projects
Commit 041babf0 authored by rswindell's avatar rswindell
Browse files

Fix problem with ;UEDIT command argument (may be username).

parent c5014aec
No related branches found
No related tags found
No related merge requests found
......@@ -297,14 +297,14 @@ function str_cmds(str)
}
if(str=="HELP") {
writeln("UEDIT [#]");
writeln("\tEdits user # or starts at user 0");
writeln("UEDIT [Number or Name]");
writeln("\tEdits specified user or starts at user #1");
}
if(word=="UEDIT") {
// Prompts for syspass
str=str.substr(5);
if(parseInt(str))
bbs.edit_user(str);
if(str.length)
bbs.edit_user(bbs.finduser(get_arg(str)));
else
bbs.edit_user();
return;
......
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