Another little fix for quoting
This commit is contained in:
parent
a3d3ea770a
commit
c9885c1485
@ -431,7 +431,7 @@ char *www_email_display(struct user_record *user, int email) {
|
||||
if (body[i] == '\r' || chars == 78) {
|
||||
sprintf(buffer, "\n> ");
|
||||
if (chars == 78) {
|
||||
sprintf(buffer, "%c", body[i]);
|
||||
sprintf(buffer, "\n> %c", body[i]);
|
||||
chars = 1;
|
||||
}
|
||||
} else {
|
||||
|
@ -515,7 +515,7 @@ char *www_msgs_messageview(struct user_record *user, int conference, int area, i
|
||||
if (body[i] == '\r' || chars == 78) {
|
||||
sprintf(buffer, "\n> ");
|
||||
if (chars == 78) {
|
||||
sprintf(buffer, "%c", body[i]);
|
||||
sprintf(buffer, "\n> %c", body[i]);
|
||||
chars = 1;
|
||||
}
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user