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

Fix problem with hitting ENTER to send mail to all users when run from the BBS

(e.g. via ";EXEC ?mailall").
parent b73b7e09
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ print("Synchronet MailAll " + REVISION);
print("Enter ARS matches to send mail to or [ENTER] for everyone");
printf("ARS to match: ");
if(this.console)
if(js.global.console)
ars=console.getstr(40,K_UPPER);
else
ars=readln();
......@@ -21,7 +21,7 @@ if(ars==undefined)
printf("\r\n\1y\1hSubject: ");
if(this.console)
if(js.global.console)
subj=console.getstr(70,K_LINE);
else
subj=readln();
......
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