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

Wrap at 80 cols whtn displaying, not 79.

parent 9c01c67e
Branches
Tags
No related merge requests found
......@@ -41,7 +41,7 @@ if(msg.type=="plain") {
}
/* Plain text */
else {
template.body=word_wrap(template.body,79);
template.body=word_wrap(template.body,80);
template.body=html_encode(template.body,true,false,false,false);
}
}
......
......@@ -49,7 +49,7 @@ if(msg.type=="plain") {
}
/* Plain text */
else {
template.body=word_wrap(template.body,79);
template.body=word_wrap(template.body,80);
template.body=html_encode(template.body,true,false,false,false);
}
if(template.hdr != null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment