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

Strip Ctrl-A codes instead.

parent 8b3ca6c8
No related branches found
No related tags found
No related merge requests found
......@@ -78,12 +78,12 @@ writeln('\t\t<language>en-us</language>');
function encode(str)
{
return(html_encode(str
return(strip_ctrl(html_encode(str
,true /* ex-ASCII */
,false /* white-space */
,false /* ANSI */
,true /* Ctrl-A */
));
,false /* Ctrl-A */
)));
}
var msgbase=new MsgBase(channel.sub);
......
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