diff options
| author | Apickx <Apickx@cogarr.org> | 2016-05-11 17:51:28 -0400 |
|---|---|---|
| committer | Apickx <Apickx@cogarr.org> | 2016-05-11 17:51:28 -0400 |
| commit | 60631aeb6a03a7fdd8e7dfe78121a80747b62933 (patch) | |
| tree | ace478e706fe2f8b3f85134eeb68527099f07e63 /ws2a/bugcomment.c | |
| parent | 581b12d294a0f4e9ded2e17c44a38e81e060db13 (diff) | |
| parent | b9976f40a6a13b0dd8462183ff40a21634789cb8 (diff) | |
| download | webpage-60631aeb6a03a7fdd8e7dfe78121a80747b62933.tar.gz webpage-60631aeb6a03a7fdd8e7dfe78121a80747b62933.tar.bz2 webpage-60631aeb6a03a7fdd8e7dfe78121a80747b62933.zip | |
Merge branch 'development'
Diffstat (limited to 'ws2a/bugcomment.c')
| -rw-r--r-- | ws2a/bugcomment.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ws2a/bugcomment.c b/ws2a/bugcomment.c index afd0e6c..eeba8fe 100644 --- a/ws2a/bugcomment.c +++ b/ws2a/bugcomment.c @@ -27,6 +27,11 @@ char* replaceHTML(char* str){ nstr[nstrp] = (char)hex; nstrp++; strp+=3; + }else if(str[strp] == '\n'){ + nstr[nstrp] = '\\'; + nstr[nstrp+1] = 'n'; + nstrp+=2; + strp++; }else{ nstr[nstrp] = str[strp]; nstrp++; |
