Skip to content
Snippets Groups Projects
Commit 36aa7df1 authored by deuce's avatar deuce
Browse files

Fix bug in \n -> \r\n conversion.

parent 1929e044
Branches
Tags
No related merge requests found
......@@ -18,7 +18,7 @@ else {
if(f.open("rb",true))
template.logon=f.read();
}
template.logon.replace(/\r?\n/g,"\r\n");
template.logon=template.logon.replace(/\r?\n/g,"\r\n");
template.logon=html_encode(template.logon,true,false,true,true);
template.fidoaddrs=new Array;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment