Actually, wrap at 75 not 78, to leave room for a few quoted replies

This commit is contained in:
james 2010-03-30 04:03:23 +00:00
parent 3116d8f232
commit 3fce787126

View File

@ -1319,9 +1319,9 @@ function getTextFromHtml($html) {
$text=str_replace("&lt;","<",$text);
$text=str_replace("&gt;",">",$text);
//text version should always wrap at 78 chars, some mail severs wont accept
//text version should always wrap at 75 chars, some mail severs wont accept
//mail with very long lines
$text=wordwrap($text,78,"\n",true);
$text=wordwrap($text,75,"\n",true);
return $text;
}