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

Internal message editor needs to recount the lines when saving. This

is the likely cause of missing lines or "Aborted" messages upon saving
with the internal editor.
parent 359297de
No related branches found
No related tags found
No related merge requests found
......@@ -1016,6 +1016,7 @@ ulong sbbs_t::msgeditor(char *buf, const char *top, char *title)
strcpy(buf,top);
else
buf[0]=0;
lines = strListCount(str);
for(i=0;i<lines;i++) {
strcat(buf,str[i]);
strcat(buf,crlf);
......
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