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

Apam's suggested correction for "XDOORSCAN" in the log file

Some shells log every character the user types (e.g. 'X' for external programs)
so we need a newline before the logged DOORSCAN line to be parsed correctly.
From Apam (POSITRON)
parent d2cecaff
No related branches found
No related tags found
No related merge requests found
......@@ -971,7 +971,7 @@ function runXtrn(xtrn)
if(!(dcfg.door[xtrn]!=undefined && dcfg.door[xtrn].skip != undefined && dcfg.door[xtrn].skip)
|| !(dcfg.skipSection[xtrn_area.prog[xtrn].sec_code]!=undefined && dcfg.skipSection[xtrn_area.prog[xtrn].sec_code])) {
bbs.log_str("DOORSCAN - "+xtrn+" starting @ "+now.toString()+"\r\n");
bbs.log_str("\r\nDOORSCAN - "+xtrn+" starting @ "+now.toString()+"\r\n");
}
bbs.exec_xtrn(xtrn);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment