Skip to content
Snippets Groups Projects
Commit f7c75dee authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Populate the security level string being edited with current level (number)

This appears to have been the original intention (otherwise, why call ultoa?),
but was never done. Just a usability/convenience thing, but an apparent bug.
parent c9fdbfa2
No related branches found
No related tags found
No related merge requests found
......@@ -389,7 +389,7 @@ void sbbs_t::useredit(int usernumber)
case 'M':
bputs(text[UeditML]);
ultoa(user.level,str,10);
if(getstr(str,2,K_NUMBER|K_LINE))
if(getstr(str,2,K_NUMBER|K_LINE|K_EDIT|K_AUTODEL))
putuserstr(user.number, USER_LEVEL, str);
break;
case 'N':
......
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