For those of you who've had problems with less than/greater than characters being stripped from emails and cutting off messages, I've found a quick fix that will not only keep the text from being stripped, but will make the < and > readable.
Look for the following on line 93 of include/class.format.php
function striptags($string) {
return strip_tags(html_entity_decode($string)); //strip all tags ...no mercy!
}
and replace with this:
function striptags($string) {
//return strip_tags(html_entity_decode($string)); //strip all tags ...no mercy!
return html_entity_decode($string);
}
I can't guarantee that this is secure, or will protect you from HTML exploits, but it will make your emails with these characters readable.